运用gcd的题解
2024-05-05 20:57:39
发布于:广东
8阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int gcd(int a,int b){
if(a%b==0) return b;
else{
return gcd(b,a%b);
}
}
int main(){
int a,b;
cin>>a>>b;
cout<<gcd(a,b);
return 0;
}
全部评论 1
潮水你快通过我微信!!!
2024-08-16 来自 浙江
0
有帮助,赞一个