CJCoding With Joseph
15per day

Float Three Decimals

Create a float variable with the value 12.34567f. Use printf with %.3f to display:

Precise value: 12.346

Make sure to format it 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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.