| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 8208 | 老师 | 小鱼的数字游戏 | C++ | Accepted | 100 | 0 MS | 252 KB | 196 | 2020-10-31 17:21:03 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[200],n=0; while(true){ cin>>a[++n]; if(a[n]==0) break; } n--; for(int i=n;i>=1;i--) cout<<a[i]<<" "; return 0; }