codevs1212 最大公约数

题目描述 Description

求两个数A和B的最大公约数。 1<=A,B<=2^31-1

输入描述 Input Description

两个整数A和B

输出描述 Output Description

最大公约数gcd(A,B)

样例输入 Sample Input

8 12

样例输出 Sample Output

4

 

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

posted @ 2017-06-22 17:37  wqtnb_tql_qwq_%%%  阅读(244)  评论(0编辑  收藏  举报