0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-08-02 18:59:54 +08:00 committed by Baoshuo Ren
parent 10fb2c5154
commit f33a4c27a6
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

16
AcWing/740/740.cpp Normal file
View File

@ -0,0 +1,16 @@
#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;
}