Exercises

5.5 Describe the four basic elements of counter-controlled repetition.

5.6 Compare and contrast the while and for repetition statements.

5.7 Discuss a situation in which it would be more appropriate to use a do...while statement than a while statement. Explain why.

5.8 Compare and contrast the break and continue statements.

5.9 Find and correct the error(s) in each of the following segments of code:

a)

For (i = 100, i >= 1, i++)   System.out.println(i);

b) The following code should print whether integer value is odd or even:

switch (value % 2){   case 0:      System.out.println("Even integer");   case 1:      System.out.println("Odd integer");}

c) The following code should output the odd integers from ...

Get Java™ How To Program (Early Objects), Tenth Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.