CJCoding With Joseph

Leading Zeros

An int n = 42 is given. Print it padded with leading zeros to a width of 5:

00042

Use <iomanip> with setfill('0') and setw(5).

Expected Output:

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