题解
2024-10-19 10:11:24
发布于:重庆
6阅读
0回复
0点赞
#include<iostream>
using namespace std;
int GCD(int a,int b)
{
int c ;
do
{
c=a%b ;
a=b ;
b=c ;
}while(c!=0);
return a ;
}
int LCM(int d,int e)
{
int z,f ;
z=GCD(d,e) ;
f=d*e/z ;
return f ;
}
int main(){
int a,b;
cin>>a>>b;
cout<<"GCD="<<GCD(a,b)<<endl;
cout<<"LCM="<<LCM(a,b)<<endl;
}
全部评论 1
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvyhguh
2024-11-08 来自 江苏
0
有帮助,赞一个