🌈 搜索
📅  最后修改于: 2022-03-11 14:44:48.965000             🧑  作者: Mango
int F(int n,int m){ if(n==1) return(n) else return F(n-1,m-1)*(n-2,m) }