Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
54300 | 张思存 | 数组逆序重存放 | C++ | Accepted | 0 MS | 244 KB | 246 | 2024-10-27 09:29:15 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; int a[n]; for(int i = 0; i < n; i++){ cin >> a[i]; } for(int i = n - 1; i >= 0; i--){ cout << a[i] << " "; } return 0; }