Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2328 吴奕希 逆序输出 C++ Accepted 0 MS 256 KB 250 2023-12-23 18:36:05

Tests(10/10):


Code:

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