Assignemnt #121 and HighScore
Code
/// name: Leila Ordukhani
/// period: 6
/// program name: One Hundred and two Program
/// file name: HighScore.java
/// date finished: 5/12/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