输入两个正整数m和n,求其最大公约数和最小公倍数。用C++语言编程

 我来答
GANWEIHUN
2012-03-10 · TA获得超过241个赞
知道小有建树答主
回答量:128
采纳率:100%
帮助的人:139万
展开全部
#include<stdio.h>

void count(int a,int b)
{
int c;
if (a>b)

{
c=a;
a=b;
b=c;
}
if(b%a==0)
{
printf("最大公约数是%d\n",a);
printf("最小公倍数是%d\n",b);
}
else
{

printf("最大公约数是%d\n",1);
printf("最小公倍数是%d\n",a*b);
}
}

int main()
{
int a,b;
printf("please input a and b:");
scanf("%d%d",&a,&b);
count(a,b);
return 0;

}
追问
可是我想要的是C++的,不是C的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2012-03-10
展开全部
#include <iostream>

int G_CD(int x, int y);

int main(void)
{
using namespace std;
cout << "请输入两个正整数:\n";
int x;
int y;
cout << "第一个正整数:";
cin >> x;
cout << "第二个正整数:";
cin >> y;
int GCD = G_CD(x, y); // 最大公约数
int LCM = (x * y) / GCD; // 最小公倍数 = 两数乘积除以最大公约数
cout << "最大公约数是:" << GCD << endl;
cout << "最小公倍数是:" << LCM << endl;
return 0;
}

int G_CD(int x, int y)
{
int i;
for (i = x; i >= 1; --i)
{
if (x % i == 0)
{
if (y % i == 0)
{
break;
}
}
}
return i;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
呼啸长风2020
2012-03-10 · TA获得超过272个赞
知道小有建树答主
回答量:146
采纳率:0%
帮助的人:158万
展开全部
#include <iostream>
using namespace std;

int fun1(int a,int b)
{//辗转相除法求最大公约数
int t;
if(a<b) { t=a;a=b;b=t; }
t=1;
while((t*a)%b!=0) t++;
return b/t;
}

int fun2(int a,int b)
{//求最小公倍数
int t;
if(a<b) { t=a;a=b;b=t; }
t=1;
while((t*a)%b!=0) t++;
return t*a;
}

int main()
{
int gcd,lcm;
int a,b;

cin>>a>>b;

gcd=fun1(a,b);
lcm=fun2(a,b);

cout<<gcd<<endl<<lcm<<endl;

return 0;
}

或者你求出最大约数gcd,则lcm = a*b/gcd也行
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
洋彭0g8
2012-03-10
知道答主
回答量:8
采纳率:0%
帮助的人:3.9万
展开全部
#include<iostream>
using namespace std;

void count(int a,int b)
{
int c;
if (a>b)

{
c=a;
a=b;
b=c;
}
if(b%a==0)
{
cout<<"最大公约数是"<<a;;

cout<<"最小公倍数是"<<b;

}
else
{

cout<<"最大公约数是"<<1;

cout<<"最小公倍数是"<<a*b;
}
}

int main()
{
int a,b;
cout<<"please input a and b:";
cin>>a>>b;
count(a,b);

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友2074b01
2012-03-10
知道答主
回答量:15
采纳率:0%
帮助的人:12.2万
展开全部
#include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
int m,n,m_cup,n_cup,res;
cin>>m>>n;
if(m > 0 && n > 0)
{ m_cup=m;
n_cup=n;
res=m_cup%n_cup;
while(res!=0)
{
m_cup=n_cup;
n_cup=res;
res=m_cup%n_cup;
}
cout<<n_cup<<' '<<m*n/n_cup;
}
else
cout<<"Error!"<<endl;
system("pause");
return 0;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式