CJCoding With Joseph

Age Validator Class

Create a class Human with a public property Age backed 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 a Main method.

Setting Age to 25 then reading it prints:
25
Setting Age to -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.