CJCoding With Joseph

Kelvin to Celsius from Input

Read a temperature in Kelvin (a floating-point number) from input and print the equivalent Celsius temperature with exactly 2 decimal places. Use the formula C = K - 273.15. For example, if the input is:

300

print:

26.85

Use <iomanip> with fixed and setprecision(2).

Expected Output:

26.85
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
300
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.