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