CJCoding With Joseph

Print Pi to Five Decimals

A double pi = 3.14159265 is given. Print it with exactly 5 decimal places:

3.14159

Use <iomanip> with fixed and setprecision(5).

Expected Output:

3.14159
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.