Skip to content

Instantly share code, notes, and snippets.

View tudor-paraschivescu's full-sized avatar
🎯
Focusing

Tudor Paraschivescu tudor-paraschivescu

🎯
Focusing
View GitHub Profile
@tudor-paraschivescu
tudor-paraschivescu / ReportCard.java
Created July 17, 2017 16:28
Report card that stores grades for English, Math, Computer Science, History and Geography subjects. Made for the Android Basics Nanodegree program on Udacity.
/**
* 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;