
public class loopDemo1 {
	/*
	 * Goal: Write a program that guesses an
	 *   integer number that the user is thinking of.
	 *   
	 *   It should repeatedly ask the user if
	 *   some number 'guess' is their hidden
	 *   number and continue until they respond: "yes".
	 */
	public static void main(String[] args) {
		// Required variables:
		// int 		- (our guess number)
		// String	- to hold the user's response of "yes" or "no"
		
		// Required code:
		// loop		- continually updating the guess number
		//			  and asking user if that number is correct
		
		// response to user indicating when we've found their number
	}
}

