devc++最小公倍数
时间: 2023-12-16 13:28:37 浏览: 77
最大公约数 最小公倍数 C++
以下是使用C语言在DevC++中求最小公倍数的示例:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
int m, n, r;
int s;
printf("输入两数:");
scanf("%d %d", &m, &n);
s = m * n;
while(n != 0) {
r = m % n;
m = n;
n = r;
}
printf("最大公因数(Greatest Common Divisor):%d\n", m);
printf("最小公倍数(Least Common Multiple):%d\n", s/m);
return 0;
}
```
运行结果:
```
输入两数:4 6
最大公因数(Greatest Common Divisor):2
最小公倍数(Least Common Multiple):12
```
阅读全文