Problem 4.1-4.3, Singleton Word Problems
Problem 4.2
Solve each of these problems by filling in the body of the loop in this starter program:
Print every string the user says until they say "DONE". (Don't print "DONE").
int temp = 0;
boolean done = false;
while (!done) {
// Your submission's code goes here
// It's different for each problem.
done = true;
}