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:
parent
2e4ccb35d7
commit
b3dd64d10e
10
Luogu/problem/B2004/B2004.cpp
Normal file
10
Luogu/problem/B2004/B2004.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user