0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 02:38:49 +00:00

B2004 对齐输出

R52393209
This commit is contained in:
Baoshuo Ren 2021-07-04 19:29:50 +08:00 committed by Baoshuo Ren
parent 2e4ccb35d7
commit b3dd64d10e
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << right << setw(8) << a << ' ' << right << setw(8) << b << ' ' << right << setw(8) << c << endl;
return 0;
}