CJCoding With Joseph

Field Width Padding

Create four integer variables with the values 5, 42, 156, and 1003. Use cout with setfill('0') and setw(4) to display each number on a separate line, formatted with zero padding to be exactly 4 digits wide:

0005
0042
0156
1003

Use setfill('0') and setw(4) before each number. Numbers already 4 digits will not have additional padding.

Expected Output:

0005
0042
0156
1003
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.