Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
89456 sh25_shengmy 倒序输出 C++ 通过 0 MS 244 KB 212 2026-06-05 14:25:59

Tests(1/1):


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


测评信息: