Assignemnt 121 and High Score

Code

    /// Name: Xinting Chen
    /// Period: 7
    /// Program Name: High Score
    /// File Name: HighScore.java
    /// Date Finished: 5/23/2016
  
        import java.io.IOException;
        import java.io.PrintWriter;
        import java.util.Scanner;
        
        
        public class HighScore {
        
            public static void main(String[] args) {
        
                PrintWriter fileOut;
                int score = 0;
                String name;
        
                Scanner keyboard = new Scanner(System.in);
                do
                {
                    
                        System.out.println();
                        System.out.print( "You got a High Score!\n\n Please enter your score: " );
                        score = keyboard.nextInt();
              
                } while (score <= 0);
        
        
                System.out.println();
                System.out.print( "Please enter your name: " );
                name = keyboard.next();
        
                
                try
                {
                    fileOut = new PrintWriter("score.txt");
        
                }
                catch(IOException e)
                {
                    System.out.println("Sorry, I can't open the file 'receipt.txt' for editing.");
                    System.out.println("Maybe the file exists and is read-only?");
                    fileOut = null;
                    System.exit(1);
                }
        
                fileOut.println( name+": "+score );
        
                fileOut.close();
        
                System.out.println( "Score saved in score.txt" );
            }
        }

    

Picture of the output

Assignment 121