wap to print first 10 natural numbers from 50 to 1
Answers
Answered by
1
Answer:
public class brainly {
public static void main( String[]args) {
for (int i = 1; i < 11; i++)
System.out.println(i);
}
}
--Use a loop.
--For loop starts from 1 here and ends at 10.
Similar questions