Assignemnt #58 and One Shot Hi Lo

Code

/// Name: Tristan Chung
/// Period: 5
/// Program Name: Hi Lo
/// File Name: HiLo.java
/// Date Finished: 11/19/2015

import java.util.Scanner;
import java.util.Random;
    
public class HiLo
{
    public static void main( String[] args )
    {
        Scanner keyboard = new Scanner(System.in);
        
        Random r = new Random();
        int guess;
        int number = 1 + r.nextInt(100);
            
            
        System.out.println( "I'm thinking of a number between 1-100. Try to guess it. ");
        guess = keyboard.nextInt();
            
        if ( guess == number )
            System.out.println( "Wow Good Job, that is correct! ");
        else if ( guess < number )
            System.out.println( "Sorry, you are too low. I was thinking of " + number + ".");
        else if ( guess > number )
            System.out.println( "Sorry you are too high. I was thinking of " + number + ".");   
    }
}
    

Picture of the output

Assignment 58