โ Back to User Input
Question 19
Read Float Input
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
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.