下面程序为求两个数的最大公约数和最小公倍数

下面程序为求两个数的最大公约数和最小公倍数。

#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 

© 版权声明
THE END
喜欢就支持以下吧
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容