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

求最大公约数(辗转相除法)

时间:2015-12-06 11:13:46      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

public static int gcd(int a, int b) {

int n1 = Math.abs(a);
int n2 = Math.abs(b);
int remainder = n1 % n2;
while (remainder > 0) {
n1 = n2;
n2 = remainder;
remainder = n1 % n2;
}
return n2;
}

求最大公约数(辗转相除法)

标签:

原文地址:http://www.cnblogs.com/diyishijian/p/5023078.html

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