输入两个正整数m和n并求其最大合同数和最小公倍数
查察全套“c语言习题集”
题目:
输入两个正整数m和n,求其最大合同数和最小公倍数。
1.措施阐明:操作辗除法。
2.措施源代码:
#include "stdio.h"
#include "conio.h"
main()
{
int a,b,num1,num2,temp;
printf("please input two numbers:\n");
scanf("%d,%d",&num1,&num2);
if(num1<num2)/*互换两个数,使大数放在num1上*/
{
temp=num1;
num1=num2;
num2=temp;
}
a=num1;b=num2;
while(b!=0)/*操作辗除法,直到b为0为止*/
{
temp=a%b;
a=b;
b=temp;
}
printf("gongyueshu:%d\n",a);
printf("gongbeishu:%d\n",num1*num2/a);
getch();
}
3.Visual C++ 6.0下调试通过,如图: