如何格式化我的控制台输出,使其在C ++中与右侧对齐?
答案 0 :(得分:5)
使用操纵器标志std::right
或
这有效......
#include<iostream>
using std::cout;
using std::endl;
#include<iomanip>
using std::setw;
int main(){
int x = 12345;
cout << "Blah Blah Blah" << endl << setw(80) << x << endl;
system("pause");
return 0;
}