Show each of the following sequences:
start at 0, count upward by 1's | 0, 1, 2, 3, 4, 5, 6, 7, . . . | start at 0, count upward by 2's | 0, 2, 4, 6, 8, 10, 12, 14, . . . | start at 1, count upward by 2's | 1, 3, 5, 7, 9, 11, 13, 15, . . . |
Here is almost the same loop as in the previous example, but now the control variable is incremented by THREE.
int count; for ( count = 0; count <= 12; count = count + 3 ) { System.out.println( "count is: " + count ); } System.out.println( "\nDone with the loop.\nCount is now" + count);
Here is a JavaScript version of this loop. Try to predict the output before you run the program. (Notice that the test is now <= ).
Now show the for
statement for each of the following sequences
start at 0, count upward by 1's, end at 7 | for ( count = ___; count < ___; count++ ) | start at 0, count upward by 2's, end at 14 | for ( count = ___; count < ___; count = count+2 ) | start at 1, count upward by 2's, end at 15 | for ( count = ___; count < ___; count = count+2 ) |