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

最大公约数和最小公倍数

时间:2017-02-23 01:02:24      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:约数   log   namespace   out   span   stream   ack   exception   iostream   

写了一段相关的代码,好久不写了

#include <iostream>
#include <exception>
#include <stack>

using namespace std;

int func(int a, int b) {
    if (a < b) {
        a = a ^ b;
        b = a ^ b;
        a = a ^ b;
    }
    while (b != 0) {
        int c = a % b;
        a = b;
        b = c;
    }
    return a;
}

int func2(int a, int b) {
    int c = func(a, b);
    return c * (a/c) * (b/c);
}

int main() {
    std::cout << "Hello, World!" << std::endl;

    cout << func(33, 44) << endl;
    cout << func2(33, 44) << endl;

    return 0;
}

 

最大公约数和最小公倍数

标签:约数   log   namespace   out   span   stream   ack   exception   iostream   

原文地址:http://www.cnblogs.com/charlesblc/p/6431542.html

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