教你用递归做(我真是个天才)
2024-08-06 21:18:43
发布于:广东
0阅读
0回复
0点赞
代码如下:
#include <bits/stdc++.h>
using namespace std;
int f(int a,int b,int x){
if(x==a+b) return x;
else return f(a,b,x+1);
}
int main(){
int a,b;
cin>>a>>b;
printf("%d",f(a,b,1));
return 0;
}
这里空空如也
有帮助,赞一个