Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
83806 sh25_huangse 倒序输出 C++ 通过 0 MS 248 KB 212 2026-02-02 17:59:12

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; }


测评信息: