1
0
已采纳
朱智霖
新手守护
新手守护
cin>>n;
for(i=1;i<=n;i++) cin>>a[i];
for(i=1;i<=n;i++) cout<<a[i]<<' ';
给,不谢
0
周建勋
中级光能
中级光能
用for循环:
for(int i=0;i<n;i++) { cin>>a[i]; } for(int i=0;i<n;i++) { cout<<a[i]<<" "; }
0
0
0
0
徐硕
高级守护
高级守护
int n;
cin>>n;
for(int i=0;i<n;i++){
cin>>a[i];
}
for(int i=n-1;i>=0;i--){
cout<<a[i]<<" ";
}
看看吧
定义在main函数上。
int a[20];
int main()
0