我一次性AC这道题,用时5分钟。
#include<iostream>
using namespace std;
const int N=20;
int a[N];
int main()
{
// freopen("xxx.in","r",stdin);
// freopen("yyy.out","w",stdout);
for(int i=0;i<N;i++)
{
cin >> a[i];
}
int bh=0;
for(int i=N-1;i>=0;i--)
{
cout << "N[" << bh << "] = " << a[i] << '\n';
bh++;
}
// fclose(stdin);
// fclose(stdout);
return 0;
}