嚯,这是什么奇怪的题目
这样可以递归:
// Author:PanDaoxi
#include <iostream>
using namespace std;
int f(int i,int j){
if(i==1||j==1) return 1;
else return f(i-1,j)+f(i,j-1);
}
int main(){
int n,m;
cin>>n>>m;
cout<<f(n,m);
return 0;
}
2021-08-07 05:15:21
嚯,这是什么奇怪的题目
这样可以递归:
// Author:PanDaoxi
#include <iostream>
using namespace std;
int f(int i,int j){
if(i==1||j==1) return 1;
else return f(i-1,j)+f(i,j-1);
}
int main(){
int n,m;
cin>>n>>m;
cout<<f(n,m);
return 0;
}
下一篇:最长上升子序列 最长下降子序列