โ Back to Printing
Question 190
Width and Precision
Width and Precision
A valuex = 3.14159is given. Print it rounded to 2 decimals, right-aligned in a field 8 characters wide, surrounded by|: | 3.14| That is 4 spaces then3.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.