Created
September 23, 2019 19:30
-
-
Save mrmemmo/8f93e158f3ca3287c10b542858ae893b 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 Student | |
| { | |
| String dob; | |
| String fullName; | |
| int gYear; | |
| final static int YEAR_FOUNDED = 1785; | |
| public Student(){ | |
| } | |
| public Student(int g, String name,String dob) | |
| { | |
| gYear = g; | |
| fullName = name; | |
| this.dob = dob; | |
| } | |
| public String createUsername(){ | |
| return ""; | |
| } | |
| public int getAge(String dOBirth){ | |
| return 0; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment