CJCoding With Joseph

Left-Aligned Text

Print the word Cat left-aligned in a field 10 characters wide, then a | to mark the end of the field:

Cat       |

There are 7 spaces between Cat and |. Use <iomanip> with left and setw(10).

Expected Output:

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