考试首页 | 考试用书 | 培训课程 | 模拟考场 | 考试论坛  
全国  |             |          |          |          |          |         
  当前位置:计算机等级 > 二级考试 > C语言程序设计 > C语言模拟试题 > 文章内容
  

全国计算机等级考试C语言考试程序填空题(15)

中华IT学院   【 】  [ 2016年6月1日 ]

在考生文件夹下,给定程序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)

    while( ____(1)____ )

    {

      n2 = n1 ;

      n1 = t ;

      t = n2 % n1;

    }

  /************found************/

max=n1;

    max = ____(2)____ ;

    min = x * y / max ;

   printf("max is : %d\n",max);

   printf("min is : %d\n",min);

}

分享到:
本文纠错】【告诉好友】【打印此文】【返回顶部
将考试网添加到收藏夹 | 每次上网自动访问考试网 | 复制本页地址,传给QQ/MSN上的好友 | 申请链接 | 意见留言 TOP
关于本站  网站声明  广告服务  联系方式  站内导航  考试论坛
Copyright © 2006-2017 中华考试网(Examw.com) All Rights Reserved  营业执照