码迷,mamicode.com
首页 > 编程语言 > 详细

算法训练 5-1最小公倍数

时间:2017-03-12 12:48:07      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:logs   out   space   cout   namespace   str   turn   log   水题   

水题

#include <iostream>

using namespace std;

int fun(int x,int y)
{
        int i;
        for(i=(x<y?x:y);!(x%i==0&&y%i==0);i--);
        return x/i*y;
}

int main()
{
    int x,y;
    while(cin>>x>>y)
    {
            cout<<fun(x,y);
    }
}

 

算法训练 5-1最小公倍数

标签:logs   out   space   cout   namespace   str   turn   log   水题   

原文地址:http://www.cnblogs.com/x724578807/p/6537406.html

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