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

52nod 1011 最大公约数GCD

时间:2017-08-05 21:10:59      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:clu   div   最大   stdio.h   ext   amp   out   name   algorithm   

输入2个正整数A,B,求A与B的最大公约数。
 
Input
2个数A,B,中间用空格隔开。(1<= A,B <= 10^9)
 
Output
输出A与B的最大公约数。
 
Input示例
30 105
 
Output示例
15

水题~~~~~~~
#include <iostream>
#include <string.h>
#include <algorithm>
#include <stdio.h>
using namespace std;
long long gcd(long long a,long long b){
if (b==0)
	return a;
	return gcd(b,a%b);
}
int main()
    long long a,b,c;
    scanf("%I64d%I64d",&a,&b);
    c=gcd(a,b);
	cout<<c<<endl;
}

  

 

52nod 1011 最大公约数GCD

标签:clu   div   最大   stdio.h   ext   amp   out   name   algorithm   

原文地址:http://www.cnblogs.com/z-712/p/7291291.html

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