CJCoding With Joseph

Temperature Conversion Property

The Thermometer class has a private field celsius. Add a Celsius property (get and set) and a read-only property Fahrenheit that returns celsius * 9 / 5 + 32 using integer math. Do NOT write a Main method.

For Celsius = 100 the program prints:
212

For Celsius = 0 the program prints:
32

Expected Output:

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