CJCoding With Joseph

Normalizing Input in a Setter

The Coupon class has a private field code. Add a Code property whose get returns the field and whose set stores the value converted to UPPERCASE, so callers can type any casing. Do NOT write a Main method.

For Code = "save10" the program prints:
SAVE10

Expected Output:

SAVE10
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.