辗转相除
2024-01-13 15:26:58
发布于:广东
135阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int f(int a,int b)
{
//递归边界
if(a%b==0) return b;
//递归式
else return f(b,a%b);
}
int main()
{
int a,b;
cin>>a>>b;
cout<<f(a,b);
return 0;
}
//A7981.辗转相除法最大公约数
这里空空如也
有帮助,赞一个