| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76360 | sh25_shenpy | 逆序输出三个数字 | C++ | 通过 | 0 MS | 244 KB | 185 | 2025-12-19 14:43:48 |
#include <bits/stdc++.h> using namespace std; int s[10]; int main(){ for(int i=0;i<3;i++){ cin>>s[i];} for(int j=2;j>=0;--j){ cout<<s[j]<<" ";} return 0; }