Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
8535 | 毕潇天 | 对齐输出 | C++ | Accepted | 0 MS | 236 KB | 212 | 2023-02-10 15:54:53 |
#include <iostream> #include <iomanip> using namespace std; int main() { int a,b,c; cin >> a >> b >> c; cout << setw(6) << a << ' '; cout << setw(6) << b << ' '; cout << setw(6) << c; return 0; }