CJCoding With Joseph
15per day

Read Float Input

Write a program that reads a float value from the user and prints it with 2 decimal places:

You entered: [number]

Use %f format specifier with scanf to read the float, and %.2f with printf to display it with 2 decimal places.

Expected Output:

You entered: 3.14
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
3.14\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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.