Question: Write the loop statements for the following questions in JAVA. You do not need to create entire program, ONLY the loops. 1) Write a for
Write the loop statements for the following questions in JAVA. You do not need to create entire program, ONLY the loops.
1) Write a for loop that displays the following set of numbers 0, 10, 20, 30, 40, 50 ...... 1000.
2) Write a nested loop that displays 10 rows of '$' characters. There should be 15 '$' characters on each row.
3) Convert the following for loop to a while loop:
for(int x=50; x>0; x--)
System.out.println( x + " seconds to go.");
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
