解题思路:
注意事项:
参考代码:
#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;
int gcd(int x,int y)//求最大公约数函数
{
int t;
while(y)
{
t=x%y;
x=y;
y=t;
}
return x;
}
int main()
{
int m,n;
scanf("%d%d",&n,&m);
printf("%d %d",gcd(n,m),n*m/gcd(n,m));
return 0;
}
0.0分
1 人评分
简单的a+b (C语言代码)浏览:712 |
【亲和数】 (C语言代码)浏览:576 |
【绝对值排序】 (C++代码)浏览:712 |
这可能是一个假的冒泡法浏览:1057 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:381 |
剪刀石头布 (C语言代码)浏览:1784 |
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:629 |
DNA (C语言代码)浏览:558 |
K-进制数 (C语言描述,蓝桥杯)浏览:943 |
sizeof的大作用 (C语言代码)浏览:1560 |