Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155257 gqj 数组倒序输出 C++ Accepted 0 MS 280 KB 192 2026-06-06 12:07:06

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int s; cin>>s; int a[s]; for(int i=1;i<=s;i++){ int b; cin>>b; a[i-1]=b; }for(int o=s;o>=1;o--) cout<<a[o-1]<<" "; }