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

求两数的最大公约数

时间:2018-09-09 23:33:05      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:color   class   int   最大公约数   rem   turn   fun   while   约数   

1 int fun(int a, int b) {
2     while (b != 0) {
3         int remainder = a % b;
4         a = b;
5         b = remainder;
6     }
7     return a;
8 }

 

求两数的最大公约数

标签:color   class   int   最大公约数   rem   turn   fun   while   约数   

原文地址:https://www.cnblogs.com/moujun1001/p/9615767.html

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