首页 新闻 会员 周边
2
回答数

待解决问题 递归函数调用理解

函数递归,求f(2, 3)= int f(int x, int y) { if(x==0) return y+2; if(y==0) return f(x-1, 1); return f(x-1, f