辗转相除法题解
2023-10-29 13:38:47
发布于:北京
32阅读
0回复
0点赞
#include <iostream>
using namespace std;
int GCD(int a,int b){
if(a%b==0) return b;
return GCD(b,a%b);
}
int LCM(int a,int b){
return a/GCD(a,b)*b;
}
int main(){
int a,b;
cin>>a>>b;
cout<<"GCD="<<GCD(a,b)<<endl;
cout<<"LCM="<<LCM(a,b)<<endl;
return 0;
}
这里空空如也
有帮助,赞一个