码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1108: 最小公倍数

时间:2017-08-02 23:42:11      阅读:315      评论:0      收藏:0      [点我收藏+]

标签:int   syn   main   ons   name   cout   font   std   ret   

最小公倍数

 

#include<iostream>
using namespace std;
int gcd(int a, int b)
{
	while (b)
	{
		int t = a%b;
		a = b;
		b = t;
	}
	return a;
}
int lcm(int a, int b)
{
	return a / gcd(a, b)*b;
}
 
int main()
{
	ios::sync_with_stdio(false);
	int a, b;
	while (cin >> a >> b)
		cout << lcm(a, b) << ‘\n‘;
	return 0;
}

HDU 1108: 最小公倍数

标签:int   syn   main   ons   name   cout   font   std   ret   

原文地址:http://www.cnblogs.com/zjnu/p/7277134.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!