CJCoding With Joseph

Computed Boolean Property

Create a class Voter whose constructor stores a private int age. Add a read-only property IsAdult that returns true when the age is 18 or greater, and false otherwise. Do not write a Main method.

For new Voter(20) the program prints:
True

Expected Output:

True
Topics:
Encapsulation
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.