View ReportCard.java
/** | |
* Report card class that stores grades for | |
* English, Math, Computer Science, History and Geography subjects. | |
* Created by Tudor Paraschivescu on 17/07/2017. | |
*/ | |
public class ReportCard { | |
private static final char NO_GRADE = '-'; | |
private String studentName; |