Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
2696 陈思雨 数组逆序重放 C++ Accepted 100 0 MS 256 KB 196 2019-12-07 10:33:38

Tests(1/1):


#include<iostream> int main(){ int n; int a[101]={0}; scanf("%d",&n); for(int j=1;j<=n;j++){ scanf("%d",&a[j]); } for(int j=n;j>=1;j--){ printf("%d ",a[j]); } return 0; }


Judgement Protocol: