CJCoding With Joseph

Left Aligned Text

Print the word Hi left-aligned in a field 8 characters wide, surrounded by | characters:

|Hi      |

That is Hi followed by 6 spaces (8 columns total). Use the - flag with %s, i.e. %-8s.

Expected Output:

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