Last active
December 27, 2015 14:59
-
-
Save saltlakeryan/7344395 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
public static void main(String[] args) { | |
StudentGrades grades = new StudentGrades(); | |
grades.promptForInfo(); | |
System.out.println("Your name: " + grades.getName()); | |
System.out.println("Your test name: " + grades.getTestName()); | |
System.out.println("Your score: " + grades.getScore()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This code will change the world!
(I never logged in to GitHub before--just testing.)