小弟我這題用了兩個作法
(一)遞迴
(二)迴圈
俗話說遞迴只有天上有,凡人應該用迴圈
這題我用遞迴做都會WA
附上我的遞迴code:
#include <iostream>
#include <cstdio>
using namespace std;
int FUC(int a,int b){
if(b=1的狀況)
結果;
else if(a=b和a=1的狀況)
結果;
else
return FUC(a-1,b)+FUC(a-1,b-1); //關鍵
}
int main()
{
int a,b;
while(cin>>a>>b){
int N=0;
N=FUC(a,b);
cout<<N<<endl;
}
return 0;
}
反正小弟用上面的遞迴好像有些測資會做不出來
迴圈倒是AC了