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 cin to read the float, then cout with fixed and setprecision(2).

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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.