用C编一个求最大公约数和最小公倍数的程序!越简单越好!!谢谢!
发布网友
发布时间:2022-05-07 17:03
我来回答
共4个回答
热心网友
时间:2023-11-07 03:53
输入两个正整数m和n, 求其最大公约数和最小公倍数.
<1> 用辗转相除法求最大公约数
算法描述:
m对n求余为a, 若a不等于0
则 m <- n, n <- a, 继续求余
否则 n 为最大公约数
<2> 最小公倍数 = 两个数的积 / 最大公约数
#include
int main()
{
int m, n;
int m_cup, n_cup, res; /*被除数, 除数, 余数*/
printf("Enter two integer:\n");
scanf("%d %d", &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;
}
printf("Greatest common divisor: %d\n", n_cup);
printf("Lease common multiple : %d\n", m * n / n_cup);
}
else printf("Error!\n");
return 0;
}
热心网友
时间:2023-11-07 03:54
#include <stdio.h>
void main()
{
int a,b,m,n,temp,c,d;
printf("请输入两个数字\n");
scanf("%d%d",&m,&n);
d=m*n;
while (temp)
{
a=m>n?m:n;
b=m<=n?m:n;
temp=a%b;
m=temp;
n=b;
}
printf("这两个数的最大公约数是%d\n",b);
c=d/b;
printf("这两个数的最小公倍数是%d\n",c);
}
热心网友
时间:2023-11-07 03:54
#include<iostream>
using namespace std;
int main()
{
int a, b, r, q;
while(cin>>a>>b)
{
q=a*b;
while(b!=0)
{
r=a%b;
a=b;
b=r;
}
cout<<a<<endl<<q/a<<endl;//分别输出最大公约数与最小公倍数
}
}
热心网友
时间:2023-11-07 03:55
求最大公约数
#include <stdio.h>
main()
{int a,b;
scanf("%d,%d",&a,&b);
while(a!=b)
{if(a>b) a=a-b;
else b=b-a;
}
printf("%d\n",a);
}
热心网友
时间:2023-11-07 03:54
输入两个正整数m和n, 求其最大公约数和最小公倍数.
<1> 用辗转相除法求最大公约数
算法描述:
m对n求余为a, 若a不等于0
则 m <- n, n <- a, 继续求余
否则 n 为最大公约数
<2> 最小公倍数 = 两个数的积 / 最大公约数
#include
int main()
{
int m, n;
int m_cup, n_cup, res; /*被除数, 除数, 余数*/
printf("Enter two integer:\n");
scanf("%d %d", &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;
}
printf("Greatest common divisor: %d\n", n_cup);
printf("Lease common multiple : %d\n", m * n / n_cup);
}
else printf("Error!\n");
return 0;
}
热心网友
时间:2023-11-07 03:54
#include <stdio.h>
void main()
{
int a,b,m,n,temp,c,d;
printf("请输入两个数字\n");
scanf("%d%d",&m,&n);
d=m*n;
while (temp)
{
a=m>n?m:n;
b=m<=n?m:n;
temp=a%b;
m=temp;
n=b;
}
printf("这两个数的最大公约数是%d\n",b);
c=d/b;
printf("这两个数的最小公倍数是%d\n",c);
}
热心网友
时间:2023-11-07 03:54
#include<iostream>
using namespace std;
int main()
{
int a, b, r, q;
while(cin>>a>>b)
{
q=a*b;
while(b!=0)
{
r=a%b;
a=b;
b=r;
}
cout<<a<<endl<<q/a<<endl;//分别输出最大公约数与最小公倍数
}
}
热心网友
时间:2023-11-07 03:55
求最大公约数
#include <stdio.h>
main()
{int a,b;
scanf("%d,%d",&a,&b);
while(a!=b)
{if(a>b) a=a-b;
else b=b-a;
}
printf("%d\n",a);
}
热心网友
时间:2023-11-07 03:54
输入两个正整数m和n, 求其最大公约数和最小公倍数.
<1> 用辗转相除法求最大公约数
算法描述:
m对n求余为a, 若a不等于0
则 m <- n, n <- a, 继续求余
否则 n 为最大公约数
<2> 最小公倍数 = 两个数的积 / 最大公约数
#include
int main()
{
int m, n;
int m_cup, n_cup, res; /*被除数, 除数, 余数*/
printf("Enter two integer:\n");
scanf("%d %d", &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;
}
printf("Greatest common divisor: %d\n", n_cup);
printf("Lease common multiple : %d\n", m * n / n_cup);
}
else printf("Error!\n");
return 0;
}
热心网友
时间:2023-11-07 03:54
#include <stdio.h>
void main()
{
int a,b,m,n,temp,c,d;
printf("请输入两个数字\n");
scanf("%d%d",&m,&n);
d=m*n;
while (temp)
{
a=m>n?m:n;
b=m<=n?m:n;
temp=a%b;
m=temp;
n=b;
}
printf("这两个数的最大公约数是%d\n",b);
c=d/b;
printf("这两个数的最小公倍数是%d\n",c);
}
热心网友
时间:2023-11-07 03:54
#include<iostream>
using namespace std;
int main()
{
int a, b, r, q;
while(cin>>a>>b)
{
q=a*b;
while(b!=0)
{
r=a%b;
a=b;
b=r;
}
cout<<a<<endl<<q/a<<endl;//分别输出最大公约数与最小公倍数
}
}
热心网友
时间:2023-11-07 03:55
求最大公约数
#include <stdio.h>
main()
{int a,b;
scanf("%d,%d",&a,&b);
while(a!=b)
{if(a>b) a=a-b;
else b=b-a;
}
printf("%d\n",a);
}