Assignemnt #121 and High Score!

Code

    
    ///name: Nick Cerdan
    ///period: 6
    ///program name: High Score
    ///file name: HighScore.java
    ///date finished: 2/8/16
    
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.Scanner;
    
    public class HighScore {
        
        public static void main(String[] args) {
            
            PrintWriter fileOut;
            Scanner kb = new Scanner (System.in);
            
            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);
            }
            
            System.out.println("You got a high score!!!");
            System.out.println("");
            System.out.print("Please enter your score: ");
            int score = kb.nextInt();
            System.out.print("Please enter your name: ");
            String name = kb.next();
            System.out.println("");
            
            fileOut.print("Name: " + name);
            fileOut.print("Score: " + score);
            
            fileOut.close();
        }
    }        
    
    Assignment 120