CJCoding With Joseph
15per day

Three Decimal Places

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

Precise value: 12.346

Make sure to use setprecision(3) to show exactly 3 decimal places. Note that the value will be rounded (12.34567 rounds to 12.346).

Expected Output:

Precise value: 12.346
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.