โ Back to Printing
Question 7
Float Two Decimals
Float Two Decimals
Create a float variable with the value 9.8765f. Use printf with %.2f to display: The value is: 9.88 Make sure to format it to show exactly 2 decimal places. Note that the value will be rounded (9.8765 rounds to 9.88).
Expected Output:
The value is: 9.88
Topics:
Printing
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.