C++format补空格
时间: 2023-09-14 22:11:55 浏览: 173
eclipse c++代码格式化
在 C++ 中可以使用 `std::setw()` 函数来设置输出的字段宽度,并用空格填充不足的部分。这个函数需要包含头文件 `iomanip`。
示例代码:
```c++
#include <iostream>
#include <iomanip>
int main()
{
int num = 123;
std::cout << std::setw(6) << num << std::endl;
return 0;
}
```
输出结果为:
```
123
```
在上面的代码中,`std::setw(6)` 指定了输出的字段宽度为 6,不足 6 位的部分使用空格填充。
阅读全文