We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
if(initialAge < 0 ){
System.out.println("Age is not valid, setting age to 0.");
}
else{
this.age =initialAge;
}
}
public void amIOld() {
if(age < 13){
System.out.println("You are young.");
}
else if( age >= 13 && age < 18 ) {
System.out.println("You are a teenager.");
}
else{
System.out.println("You are old.");
}
}
public void yearPasses() {
age ++;
}
public static void main(String[] args) {
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 4: Class vs. Instance
You are viewing a single comment's thread. Return to all comments →
public Person(int initialAge) {