Exercises
Posted
on March 1st, 2001
| Bruce Eckel's Thinking in Java | Contents | Prev | Next |
- Write a program that prints values from one to 100.
- Modify Exercise 1 so that the program exits by using the break keyword at value 47. Try using return instead.
- Create a switch statement that prints a message for each case, and put the switch inside a for loop that tries each case. Put a break after each case and test it, then remove the breaks and see what happens.

Comments
There are no comments yet. Be the first to comment!