这样就可以了:
#include#include using namespace std; cout << setw(5) << setfill('0') << zipCode << endl; // or use this if you don't like 'using namespace std;' std::cout << std::setw(5) << std::setfill('0') << zipCode << std::endl;
控制填充的最常见IO操纵器是:
std::setw(width)
设置字段的宽度.
std::setfill(fillchar)
设置填充字符.
std::setiosflags(align)
设置对齐,其中align是ios :: left或ios :: right.
使用setw和setfill调用:
std::cout << std::setw(5) << std::setfill('0') << zipCode << std::endl;