解题思路:
注意事项:
参考代码:
#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 人评分
C二级辅导-阶乘数列 (C语言代码)浏览:736 |
【计算球体积】 (C语言代码)浏览:1158 |
IP判断 (C语言描述,蓝桥杯)浏览:1118 |
1011题解浏览:819 |
核桃的数量 (C语言代码)浏览:893 |
永远的丰碑 (C语言代码)浏览:608 |
格式化数据输出 (C语言代码)浏览:882 |
C语言训练-8除不尽的数 (C语言代码)浏览:1469 |
字符逆序 (C语言代码)浏览:541 |
神奇的fans (C语言代码)浏览:1123 |