Run ID:127650

提交时间:2025-07-28 16:13:06

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