โ Back to Encapsulation
Question 497
Temperature Conversion Property
Temperature Conversion Property
TheThermometerclass has a private fieldcelsius. Add aCelsiusproperty (get and set) and a read-only propertyFahrenheitthat returnscelsius * 9 / 5 + 32using integer math. Do NOT write aMainmethod. ForCelsius = 100the program prints: 212 ForCelsius = 0the 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.