Assignment #121
Code
/// Gian Adoremos
/// Period: 7
/// Program Name: HundredTwentyFirst Program
/// File Name: HighScore.java
/// Date Finished: 6/5/16
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Scanner;
public class HighScore {
public static void main(String[] args) {
PrintWriter fileOut;
String name;
int highScore;
Scanner k = new Scanner(System.in);
System.out.println("You got a high score!");
System.out.print("\nPlease enter your score: ");
highScore = k.nextInt();
System.out.print("Please enter your name: ");
name = k.next();
System.out.println();
try{
fileOut = new PrintWriter("score.txt");
} catch(IOException e) {
System.out.println("Sorry, I can't open the file for editing.");
fileOut = null;
System.exit(1);
}
fileOut.println( name );
fileOut.println( "High Score: " + highScore );
fileOut.close();
}
}
}
Picture of the output