| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 84108 | sh25_linzx | 对齐输出 | C++ | 通过 | 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; }