CJCoding With Joseph

Left Justify Text

Use System.out.printf with the %-10s specifier to left-justify the word Hi in a field 10 characters wide, then print a | right after it. The word is padded on the RIGHT with spaces. Exact output:

Hi        |

That is Hi followed by 8 spaces, then |, then a newline.

Expected Output:

Hi        |
Topics:
Printing
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.