A7981.辗转相除法最大公约数 题解
2024-01-13 19:48:53
发布于:北京
32阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int f(int a,int b){
if(a%b==0){
return b;
}
a=a%b;
swap(a,b);
return f(a,b);
}
int a,b;
int main(){
cin>>a>>b;
cout<<f(a,b);
return 0;
}
这里空空如也
有帮助,赞一个