在C++中,setw()函数是在
#include <iomanip>
std::setw(int n);
其中,n为要设置的字段宽度。例如,如果要设置输出的整数为10个字符宽度,可以使用setw(10)函数。
示例:
#include <iostream>
#include <iomanip>
int main() {
int num1 = 123;
int num2 = 4567;
std::cout << std::setw(10) << num1 << std::endl;
std::cout << std::setw(10) << num2 << std::endl;
return 0;
}
输出结果:
123
4567
在上面的示例中,使用setw()函数设置输出的字段宽度为10个字符,分别输出了num1和num2,并且在输出时会在字段内对齐。