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

求最大公约数

时间:2018-03-06 00:57:16      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:turn   辗转相除法   col   ==   color   post   int   div   return   

1 int gcd(int a, int b)
2 {
3     if (b == 0)
4         return a;
5     return gcd(b, a % b);
6 }

辗转相除法。

求最大公约数

标签:turn   辗转相除法   col   ==   color   post   int   div   return   

原文地址:https://www.cnblogs.com/lxc1910/p/8511934.html

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