WorstGuess

Code

import java.util.Scanner;

public class WorstGuess
{
	public static void main( String[] args )
	{
		Scanner keyboard = new Scanner(System.in);
        
        int response;
        
        int answer = 4;
        
        System.out.print( " Congratulations!!! you are about to play the worst GUESSING GAME EVER " );
        
        System.out.println( " So me THNK NUBER U TRY 2 SPEAK IT " );
        response = keyboard.nextInt();
        
        if ( response == 4 )
        {
            System.out.println( " What!!! UR TOO GOOD " );
        }
        else if ( response > answer && response < answer );
        {
            System.out.println( " AND ME THINKED I WAS DUMBER " );
        }
    }
}
        
        

WorstGuess

Assignment 52