1212 最大公约数

2018-06-17 23:15:36来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1212 最大公约数

 

 时间限制: 1 s
 空间限制: 128000 KB
 题目等级 : 白银 Silver
 
 
 
题目描述 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

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int a[10001];
 4 int now;
 5 int main()
 6 {
 7     int a,b;
 8     int max=1;
 9     cin>>a>>b;
10     for(int i=2;i<=min(a,b);i++)
11     {
12         if((a%i==0&&b%i==0)&&i>max)
13         max=i;
14     }
15     cout<<max;
16     return 0;
17 }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Qt入门之基础篇(三):掌握Qt4的静态编译基本方法

下一篇:spdlog源码阅读 (3): log_msg和BasicWriter