我需要在 C++ 中输出一些如下所示的列:
Lower Upper
Line case case Digits Spaces Other
------ ------ ------ ------ ------ ------
从文件读取等中打印出一些结果等。
无论如何用setw(6)在c ++中进行自动换行???
我的代码如下所示:
#include <iostream>
#include <iomanip>
using namespace std;
void printLines(); // declaring
int main(int argc, char *argv[]) {
// print table headings
cout << setw(6) << "Line" << setw(1) << " ";
cout << setw(6) << "Lower case" << setw(1) << " ";
cout << setw(6) << "Upper case" << setw(1) << " ";
cout << setw(6) << "Digits" << setw(1) << " ";
cout << setw(6) << "Spaces" << setw(1) << " ";
cout << setw(6) << "Other" << endl;
printLines();
};
// function to output 5 "lines" to divide the table headings from the data
void printLines() {
for (int i = 0; i < 6; i++) {
cout << setfill('-') << setw(6); // set output fill
cout << "-" << setfill(' ') << setw(1) << " ";
};
return;
};
但我的输出如下所示:
Line Lower case Upper case Digits Spaces Other
------ ------ ------ ------ ------ ------
有什么建议么?谢谢。