AcWing 740. 数组变换-开数组+reverse
原题链接
简单
作者:
枫哥
,
2024-10-26 08:42:44
,
所有人可见
,
阅读 1
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
// 方法1:开新数组搬过去
int main(){
int n[25],N[25];
int j = 19;
for (int i = 0; i < 20;i++){
cin >> n[i];
N[j--] = n[i];
}
for (int i = 0;i < 20; i++){
printf("N[%d] = %d\n",i,N[i]);
}
return 0;
}
// 方法2: reserve
int main(){
int N[25];
for (int i = 0; i < 20;i++){
cin >> N[i];
reverse(N,N+20);
}
for (int i = 0; i < 20;i++){
printf("N[%d] = %d\n",i,N[i]);
}
return 0;
}