All pastes #2092931 Raw Edit

Mine

public text v1 · immutable
#2092931 ·published 2011-11-08 05:01 UTC
rendered paste body
import java.util.Scanner;

public class Hangman01 {

	public static void main(String[] args) {
		
		Scanner stdIn = new Scanner(System.in);
		
		String cPhrase = ""; //common phrase entered by the user
		String gPhrase = cPhrase;
		String guess = ""; //guess entered by the user
		
		System.out.println("Please enter the phrase to guess at : ");
		cPhrase = stdIn.nextLine();
		
		for (int x = 0; x < cPhrase.length(); x++)
		{
			gPhrase += cPhrase.charAt(x) == ' '? ' ' : '?'; 
		}
		
		while (gPhrase != cPhrase)
		{
			System.out.print('\r' + "Common Phrase" + '\r' + "_____________"
					+ '\r' + '\r' + "Enter a lowercase letter guess: ");
			guess = stdIn.nextLine();
			for (int x = 0; x < cPhrase.length(); x++)
			{
				//WHAT THE HECK DO I DO NAO?
			}
		}
	    
	}

}