博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
最大公约数GCD
阅读量:5236 次
发布时间:2019-06-14

本文共 434 字,大约阅读时间需要 1 分钟。

输入2个正整数A,B,求A与B的最大公约数。
Input
2个数A,B,中间用空格隔开。(1<= A,B <= 10^9)
Output
输出A与B的最大公约数。
Input示例
30 105
Output示例
15
 
(题目提供者)
 
C++的运行时限为:1000 ms ,空间限制为:131072 KB
代码实现:
1 #include
2 int a,b,c,ret=1;3 inline int gcd(int x,int y){
return x%y==0?y:gcd(y,x%y);}4 int main(){5 scanf("%d%d",&a,&b);6 printf("%d\n",gcd(a,b));7 return 0;8 }

题目来源:51Nod

转载于:https://www.cnblogs.com/J-william/p/6372350.html

你可能感兴趣的文章
getopt_long
查看>>
TensorFlow MNIST CNN 代码
查看>>
javascript之Style物
查看>>
JSON跨域解决方案收集
查看>>
SSH框架整合总结
查看>>
图的深度优先遍历
查看>>
C# 之 提高WebService性能大数据量网络传输处理
查看>>
md5sum命令详解
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
应该是实例化对象的没有对属性赋值时,自动赋值为null,但不是空指针对象引用...
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>