โ Back to Methods
Question 353
Celsius to Fahrenheit Method
Celsius to Fahrenheit Method
Write a methodtoFahrenheit(double c)that converts a Celsius temperature to Fahrenheit with the formulac * 9 / 5 + 32and returns the result. Call it with100.0and print the value: 212.0 UseSystem.out.println.
Expected Output:
212.0
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.