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

最大公约数和最小公倍数——递归与非递归(王道)

时间:2018-03-14 22:08:02      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:space   gpo   while   递归   log   cin   turn   最大公约数   style   

最大公约数:

递归:

#include <iostream>

using namespace std;

int gcd(int a,int b){
    if(b == 0)
        return a;
    else
        return gcd(b,a%b);//b和a除以b的余数计算最大公约数
}
int main()
{
    int a,b;
    cin >> a;
    cin >> b;
    cout << gcd(a,b) << endl;
    return 0;
}

非递归:

 

#include <iostream>

using namespace std;

int gcd(int a,int b){
    while(b!=0){
        int t = a%b;
        a=b;
        b=t;
    }
    return a;
}
int main()
{
    int a,b;
    cin >> a;
    cin >> b;
    cout << gcd(a,b) << endl;
    return 0;
}

 

最小公倍数:

#include <iostream>

using namespace std;

int gcd(int a,int b){
    return b != 0 ? gcd(b,a%b) : a;
}
int main()
{
    int a,b;
    cin >> a;
    cin >> b;
    cout << a*b/gcd(a,b) << endl;
    return 0;
}

 

最大公约数和最小公倍数——递归与非递归(王道)

标签:space   gpo   while   递归   log   cin   turn   最大公约数   style   

原文地址:https://www.cnblogs.com/xym4869/p/8570181.html

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