【51NOD-0】1011 最大公约数GCD

【算法】欧几里德算法

#include<cstdio>
int gcd(int a,int b)
{return b==0?a:gcd(b,a%b);}
int main()
{
    int a,b;
    scanf("%d%d",&a,&b);
    printf("%d",gcd(a,b));
    return 0;
}
View Code

 

posted @ 2017-05-26 19:04  ONION_CYC  阅读(110)  评论(0编辑  收藏  举报