Across
- 2. A while's expression is involves what type of operator?
- 4. Fill: Iterate while c equals 'g'. while (?) {..}
- 5. x = 0; while (x > 0) { System.out.print(x+ " "); x = x - 1; } System.out.print("Bye");
- 7. Fill: Iterate while x is greater than or equal to 0. while (?) {..}
- 8. Fill: Iterate while x is less than 100. while (?) {..}
- 9. Programmers should remember that the expression describes when the loop should _____, not when the loop should terminate.
- 10. A loop that repeatedly executes sub-statements while expression is true
Down
- 1. Fill: Iterate until c equals 'z' while (?) {..}
- 3. Loop that never stops iterating
- 4. Fill: Iterate while c is not equal to 'x'. while (?) {..}
- 6. Fill in the blank: while(______) {...}