โ Back to Interfaces
Question 605
A Temperature Converter Interface
A Temperature Converter Interface
The interfaceIConverterdeclaresint ToFahrenheit(int celsius). Complete theTemperatureConverterclass using the formulacelsius * 9 / 5 + 32. Do NOT write aMainmethod. ForToFahrenheit(100)the program prints: 212
Expected Output:
212
Topics:
Interfaces
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.