CJCoding With Joseph

Width and Precision

A value x = 3.14159 is given. Print it rounded to 2 decimals, right-aligned in a field 8 characters wide, surrounded by |:

|    3.14|

That is 4 spaces then 3.14. Combine width and precision as %8.2f.

Expected Output:

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