题目
输入n个数,倒序输出(n<=1e5)。
题解
这里有两种做法:
1.数组
1.用数组从1到n输入,再从n到1输出。
#include<bits/stdc++.h>
using namespace std;
int n,a[100001];
int main()
{
cin>>n;
for(int i=1;i<=n;i++)cin>>a[i];
for(int i=n;i>=1;i--)cout<<a[i]<<' ';
return 0;
}
2.递归
先输入n,然后在递归里输入,再继续递归,最后输出数字。
#include<bits/stdc++.h>
using namespace std;
void f(int n)
{
if(n==0)return;
int t;
cin>>t;
f(n-1);
cout<<t<<' ';
}
int main()
{
int n;
cin>>n;
f(n);
return 0;
}