c++如何右对齐打印表格
时间: 2023-08-11 19:43:47 浏览: 108
GdiPrintSample.rar_GDI/图象编程_Visual_C++_
在C++中,可以使用`setw`和`right`操作符来实现右对齐打印表格。 `setw`函数用于设置下一个输出字段的宽度,`right`操作符用于将输出字段向右对齐。下面是一个示例代码:
```c++
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
cout << setw(10) << right << "Name" << setw(10) << right << "Age" << endl;
cout << setw(10) << right << "Tom" << setw(10) << right << "25" << endl;
cout << setw(10) << right << "Jerry" << setw(10) << right << "30" << endl;
return 0;
}
```
输出:
```
Name Age
Tom 25
Jerry 30
```
在上面的代码中,`setw(10)`用于设置输出宽度为10个字符,`right`操作符用于对齐输出字段。
阅读全文