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.
publicintage;publicPerson(intinitialAge){if(initialAge>0){age=initialAge;}else{age=0;Console.WriteLine("Age is not valid, setting age to 0.");}}publicvoidamIOld(){if(age<13){Console.WriteLine("You are young.");}elseif(age>=13&&age<18){Console.WriteLine("You are a teenager.");}else{Console.WriteLine("You are old.");}}publicvoidyearPasses(){age++;}
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 →
C# code of the Person class..