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