在C++中可以使用std::setw()
函數來設置輸出寬度。std::setw()
函數是在頭文件<iomanip>
中定義的,可以用于設置輸出字段的寬度。
以下是一個簡單的示例,演示如何使用std::setw()
函數設置輸出寬度為10個字符:
#include <iostream>
#include <iomanip>
int main() {
int number = 12345;
std::cout << "Number: " << std::setw(10) << number << std::endl;
return 0;
}
輸出將是:
Number: 12345
在上面的示例中,std::setw(10)
將number
的輸出寬度設置為10個字符。如果輸出的字符少于10個字符,則字段將被填充空格以達到指定的寬度。