题解 | #牛牛的对齐#
牛牛的对齐
https://www.nowcoder.com/practice/a1c18a8b533045ebbbbd9c11f9e857ac
#include <iomanip>
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << a << "" << right << setw(8) << b << "" << right << setw(8) << c << endl;
return 0;
}
阿里云工作强度 667人发布