在C++中,setw()函數(shù)是在
#include <iomanip>
std::setw(int n);
其中,n為要設(shè)置的字段寬度。例如,如果要設(shè)置輸出的整數(shù)為10個(gè)字符寬度,可以使用setw(10)函數(shù)。
示例:
#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;
}
輸出結(jié)果:
123
4567
在上面的示例中,使用setw()函數(shù)設(shè)置輸出的字段寬度為10個(gè)字符,分別輸出了num1和num2,并且在輸出時(shí)會(huì)在字段內(nèi)對(duì)齊。