题解
2023-04-29 17:25:13
发布于:上海
101阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
int shuzhu[n];
for (int i = 0; i < n; ++i) {
cin >> shuzhu[i];
}
for (int j = n - 1; j >= 0; --j) {
cout << shuzhu[j];
cout << " ";
}
return 0;
}
这里空空如也
有帮助,赞一个