| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 72847 | sh25_shenpy | 逆序输出三个数字 | C++ | Accepted | 0 MS | 244 KB | 145 | 2025-11-02 21:24:21 |
#include <bits/stdc++.h> using namespace std; int main( ) { int a,h,c; cin>>a>>h>>c; cout<<c<<" "<<h<<" "<<a; return 0; }