Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87833 朱俊燃 逆序输出 C++ Accepted 1 MS 272 KB 218 2024-08-15 10:45:34

Tests(10/10):


Code:

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