巧妙取法——最小公倍数

#include <iostream>
#include <algorithm>
#include <cstring> 
#include <cmath>
using namespace std;


int f(int a, int b)
{
    int i;
    for(i=a;;i+=a) //确保是a的倍数 
    {
        if(i%b==0) return i; //确保是b的倍数 
    }
}
int main()
{
    cout <<  f(3,5);
    return 0; 
}

 

posted @ 2017-11-03 12:39  kent鹏  阅读(303)  评论(0编辑  收藏  举报