Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
27387 | yuhengyang | 对齐输出 | C++ | Accepted | 0 MS | 244 KB | 177 | 2023-10-04 11:59:10 |
#include<iostream> #include<cstdio> #include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; printf("%6d %6d %6d",a,b,c ); return 0; }