Assignemnt #61 and KeepGuessing

Code

  /// name: Leila Ordukhani
  /// period: 6
  /// program name: Fifty-first Program
  /// file name: KeepGuessing.java
  /// date finished: 12/2/15
  
  import java.util.Scanner;
  import java.util.Random;

public class KeepGuessing
{
	public static void main( String[] args )
	{
		Scanner keyboard = new Scanner(System.in);
                    
            Random r = new Random();
    
            int number = 1 + r.nextInt(10);
            int guess;
    
            System.out.println("I'm thinking of a number from 1 to 10. Try to guess it.");
    
            System.out.print("Your guess: ");
            guess = keyboard.nextInt();
    
            while (guess != number)
            {
                System.out.println("That is incorrect. Guess again.");
                System.out.print("Your guess: ");
                guess = keyboard.nextInt();
            }
            
            System.out.println("That's right! You're a good guesser.");
        }
    }
  

Picture of the output

Assignment 61