博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
最小公倍数
阅读量:5930 次
发布时间:2019-06-19

本文共 814 字,大约阅读时间需要 2 分钟。

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;bool isPrime(int num){ if (num == 2 || num == 3) { return true; } if (num % 6 != 1 && num % 6 != 5) { return false; } for (int i = 5; i*i <= num; i += 6) { if (num % i == 0 || num % (i+2) == 0) { return false; } } return true;}int minyue(int num,int num1){ int beic = num,gcd=1; for(int j=2;j<=beic;j++) { if(isPrime(j)&&beic%j==0&&num1%j==0) { beic = beic/j; gcd *= j; j = 1; } } return gcd;}int main(){ int n,m; while(scanf("%d%d",&m,&n)!=EOF) { printf("%d",n*m/minyue(m,n)); } return 0;}

两数相乘/公约数.

转载于:https://www.cnblogs.com/A-FM/p/8609146.html

你可能感兴趣的文章
android分析之智能指针
查看>>
MFC+Android模拟器 实现 自动玩“天天爱消除”
查看>>
Linux系统调用过程
查看>>
7-2求最大值及其下标
查看>>
ListUtil集合操作常用方法类
查看>>
CSS hack:区分IE6,IE7,firefox
查看>>
简单的记录一次简单的优化
查看>>
添加遮罩弹窗
查看>>
Web开发者必备的20款超赞jQuery插件
查看>>
linux:shell脚本格式
查看>>
Win32编程原理 - 剪切板小程序
查看>>
洛谷P4009 汽车加油行驶问题(分层最短路)
查看>>
js滚轮事件
查看>>
topcoder srm 699 div1 -3
查看>>
实际开发中闭包的应用
查看>>
mui 对话框 点击按钮不关闭对话框的办法
查看>>
python基础===利用unittest进行测试用例执行的几种方式
查看>>
团队作业-个人总结
查看>>
axios 基本运用
查看>>
mysql解决外网不能连接
查看>>