import java.util.*;

/********************************************************
 *
 * Guess plays a guessing game with a user.
 * The program generates a letter from 'a' to 'j' and then 
 * asks the user to guess what letter it is.
 *
 * If the user makes five or fewer guesses to guess the letter, 
 * they win.
 * If it takes them more than five tries they lose.
 * The computer stops the game if the user makes more than 15 tries
 * 
 * @author Nancy Harris and ...
 * @version V1 date
 *********************************************************/
public class Guess
{
	/******************************************************
	 * main plays the game
	 *
	 * @param args Command line arguments.  Unused in this application
	 ******************************************************/
	public static void main(String args [])
	{
		Scanner kb;
		int randi;
		int guessCount;
		char computerLetter;
		char userLetter;
		
		// setup the Scanner
		kb = new Scanner (System.in);
		
		// generate the character
		randi = (int)(Math.random() * 10);     // generate random number from 0 - 9
		computerLetter = (char)('a' + randi);  // generates a character from 'a' - 'j'

		// as a debugging tool, you might want to print out the computerLetter
		// to see what its value is.


		// begin your loop...think about the four parts of a loop
		
		
		
		
		
		
		
		// output the results
		
	}
}		