在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,并且在輸出時會在字段內對齊。