A good answer might be:
Outputs:// initialize test change for ( count = 0; count < 10; count++ ) System.out.print( count + " " ); 0 1 2 3 4 5 6 7 8 9 |
Any Kind of Loop
Although the previous example is a counting loop,
the
Since the loop body consists of several statements,
they must be enclosed in braces "{" and "}" .
|
QUESTION 4:What is the output of this new loop? Click Here after you have answered the question |