让一个数字显示指定位数
- #include <iostream>
- #include <iomanip>//一定要包含这个c++头文件,非常重要
- using namespace std;
- int main()
- {
- int test[4] = { 1, 12, 123, 1234 };
- for (int i = 0; i < 4; ++i)
- {
- cout << setw(4) << setfill('0') << test[i] << " ";
- }
- cout << endl << endl;
- return 0;
- }