| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 84108 | sh25_linzx | 对齐输出 | C++ | Accepted | 0 MS | 240 KB | 192 | 2026-02-08 16:47:58 |
#include<bits/stdc++.h> using namespace std; void f(int &a){ cout<<setw(6)<<a<<" "; } int main() { int a,b,c; cin>>a>>b>>c; f(a); f(b); f(c); return 0; }