CJCoding With Joseph

Formatted Table Row

Print one table row: the name Apple left-aligned in a 10-wide field, followed by the price 1.5 right-aligned in an 8-wide field with 2 decimals:

Apple         1.50

There are 9 spaces between Apple and 1.50. Use <iomanip> with left, right, setw, fixed, and setprecision(2).

Expected Output:

Apple         1.50
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.