Files
python/TangDou/LuoGuBook/P1427.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

13 lines
241 B
C++

#include <bits/stdc++.h>
using namespace std;
const int N = 110;
int a[N];
int main() {
int x;
int idx;
while (cin >> x && x) a[idx++] = x;
for (int j = idx - 1; j >= 0; j--) cout << a[j] << " ";
return 0;
}