0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 01:25:25 +00:00
OI-codes/AcWing/740/740.cpp

17 lines
269 B
C++

#include <bits/stdc++.h>
using namespace std;
int n[25];
int main() {
for (int i = 0; i < 20; i++) {
cin >> n[i];
}
reverse(n, n + 20);
for (int i = 0; i < 20; i++) {
cout << "N[" << i << "] = " << n[i] << endl;
}
return 0;
}