CJCoding With Joseph

A Temperature Converter Interface

The interface IConverter declares int ToFahrenheit(int celsius). Complete the TemperatureConverter class using the formula celsius * 9 / 5 + 32. Do NOT write a Main method.

For ToFahrenheit(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.