下面程序为求两个数的最大公约数和最小公倍数。
#include “stdio.h”
void main()
{ int m,n,num1,num2,temp;
printf(“Input two positive integer:\n”);
scanf(“%d,%d”,&num1, ① );
if(num1 < num2)
{temp=num1; num1=num2; num2= ② ;}
m=num1;
n=num2;
while(n!=0)
{ temp= ③ ;
m=n;
n=temp;
}
printf(“The grestest common divisor is %d\n”,m);
printf(“The lowest common multiple is %d\n”,num1*num2/ ④ );
}
①&num2 ② temp ③ m%n ④m
© 版权声明
部分文章来自网络,只做学习和交流使用,著作权归原作者所有,遵循 CC 4.0 BY-SA 版权协议。
THE END
暂无评论内容