I want to list all numbers from 0000-9999 however I am having trouble holding the zero places.
I tried:
for(int i = 0; i <= 9999; ++i)
{
cout << i << "\n";
}
but I get: 1,2,3,4..ect How can I make it 0001,0002,0003....0010, etc
|
I want to list all numbers from 0000-9999 however I am having trouble holding the zero places. I tried:
but I get: 1,2,3,4..ect How can I make it 0001,0002,0003....0010, etc |
||||
|
|
See setfill for specifying the fill character, and setw for specifying the minimum width. Your case would look like:
|
|||||||||||||||||
|
|
You just need to set some flags:
|
|||
|
|
|
Use
Alternatively, use the IO manipulators:
|
|||||
|
|
|
Though not required, but if you want to know how to do this with C, here is an example:
Here, '0' in "%04d" works like |
|||
|
|