阅读量:0
在C++中,可以使用setw()
函数来设置cout
的默认字段宽度。setw()
函数位于<iomanip>
头文件中,它接受一个整数参数,用于设置字段宽度。例如,下面的代码将cout
的默认字段宽度设置为10个字符:
#include <iostream> #include <iomanip> int main() { std::cout << std::setw(10) << "Hello" << std::endl; std::cout << std::setw(10) << "World" << std::endl; return 0; }
输出结果:
Hello World
在上面的例子中,setw(10)
将cout
的默认字段宽度设置为10个字符,因此输出的字符串被填充到10个字符宽度的字段中。