Skip to content

Instantly share code, notes, and snippets.

@mrmemmo
Created September 23, 2019 19:30
Show Gist options
  • Select an option

  • Save mrmemmo/8f93e158f3ca3287c10b542858ae893b to your computer and use it in GitHub Desktop.

Select an option

Save mrmemmo/8f93e158f3ca3287c10b542858ae893b to your computer and use it in GitHub Desktop.
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