CJCoding With Joseph
15per day

Float Precision

Create a float variable with the value 9.8765f. Use cout with fixed and setprecision(2) to display:

The value is: 9.88

You'll need to include <iomanip> and use: cout << fixed << setprecision(2). 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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.