| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 129130 | 黄曦 | 逆序输出数组 | C++ | Runtime Error | 0 | 0 MS | 276 KB | 168 | 2024-01-26 16:21:45 |
#include<bits/stdc++.h> using namespace std; int main() { int i,n,a[i]; cin>>n; for(i=1;i<=n;i++) a[i]=pow(2,i); for(i=n;i>=1;i--) cout<<a[i]<<endl; }