| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 2683 | 梅煦洋 | 数组逆序重放 | C++ | Accepted | 100 | 0 MS | 244 KB | 213 | 2019-12-07 10:24:57 |
#include<iostream> using namespace std; int main(){ int ey; int youku[111]; cin>>ey; for(int E=1;E<=ey;E++){ cin>>youku[E]; } for(int E=ey;E>=1;E--){ cout<<youku[E]<<" "; } return 0; }