Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
75563 sh25_shenpy 数组逆序重存放 C++ 解答错误 0 MS 256 KB 233 2025-12-07 19:44:59

Tests(0/1):


#include <bits/stdc++.h> using namespace std; int s[1010]; int main( ) { int x,sum=0; cin>>x; for(int i=1;i<=x;++i){ cin>>s[i]; } for(int i=x;i>=1;--i) { cout<<s[i]; } return 0; }


测评信息: