Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
154090 邓弘锐 逆序输出 C++ Accepted 3 MS 268 KB 194 2026-05-24 14:28:17

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int a[108],n; int main(){ cin>>n; for(int j=0;j<n;j++){ cin>>a[j]; } for(int i=n-1;i>=0;i--){ cout<<a[i]<<endl; } return 0; }