CJCoding With Joseph
15per day

Temperature Input and Conversion

Write a program that reads a temperature in Celsius as a double and converts it to Fahrenheit. Display:

[celsius] C = [fahrenheit] F

Formula: fahrenheit = (celsius * 9/5) + 32

Both values should be displayed with 1 decimal place using printf.

Example: If user enters 0.0, output should be: 0.0 C = 32.0 F

⚠️ IMPORTANT - AUTO-INPUT MODE:
This question uses automated input testing. When you run your code, the input stream will AUTOMATICALLY contain: '0.0\n'

DO NOT wait for manual keyboard input - Scanner will read from the pre-filled buffer stream immediately. Your program should use Scanner methods like nextInt(), nextDouble(), or nextLine() to read these values directly.

Think of it like Eclipse/VS Code but with the input already typed in and waiting for your Scanner to read it.

Expected Output:

0.0 C = 32.0 F
Topics:
User Input
📥 Auto-Input:
0.0\n
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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.