在考生文件夹下,给定程序FILL.C的功能是:
求两个正整数x,y的最大公约数和最小公倍数。
例如:如果x=24,y=36,程序的输出应为:
max is : 12
min is : 72 。
#include
#include
#include
void main()
{ int x,y,t,max,min,i,n1,n2;
printf("Please enter two numbers:");
scanf("%d,%d",&x,&y);
if(x > y)
{t = x; x = y; y = t;}
n1=x; n2=y;
t = n2 % n1;
/************found************/
while(t!=0) |
{
n2 = n1 ;
n1 = t ;
t = n2 % n1;
}
/************found************/
max=n1; |
min = x * y / max ;
printf("max is : %d\n",max);
printf("min is : %d\n",min);
}
2015年全国职称计算机考试教材(2007模 .. 定价:¥225 优惠价:¥213 更多书籍 | |
全国职称计算机考试速成过关系列套装:W .. 定价:¥133 优惠价:¥133.0 更多书籍 |