标签:can scanf code 最小 color component 最小公倍数 problem com
有多组测试数据.每一组输入的测试数据占一行.从键盘输入a,b.当输入为0和0时程序结束.
输出最大公约数和最小公倍数.每一组测试数据的输出结果占一行.最大公约数和最小公倍数之间有两个空格隔开.
2 6 5 6 0 0
2 6 1 30
#include <stdio.h> int main() { int a,b,c,d,t,i,j; while(1) { scanf("%d %d",&a,&b); if(a==0&&b==0) { break; } else { i=a; j=b; t=1; while(t!=0) { t=a%b; a=b; b=t; } c=a; d=i*j/c; printf("%d %d\n",c,d); } } return 0; }
标签:can scanf code 最小 color component 最小公倍数 problem com
原文地址:https://www.cnblogs.com/Lazy-Cat/p/9838160.html