โ Back to Classes
Question 441
Age Validator Class
Age Validator Class
Create a classHumanwith a public propertyAgebacked by a private field. The getter returns the stored age; the setter stores the value but replaces any negative value with 0. Do not write aMainmethod. SettingAgeto 25 then reading it prints: 25 SettingAgeto -5 then reading it prints: 0
Expected Output:
25
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.