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

欧几里得算法——求取最小公约数

时间:2014-07-15 00:46:14      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:style   blog   java   color   算法   div   

 1 import java.util.Scanner;
 2 
 3 /**
 4  * Created by Administrator on 14-5-20.
 5  */
 6 public class Euclid {
 7     public static void main(String[] args){
 8         Scanner scanner=new Scanner(System.in);
 9         String str=scanner.nextLine();
10         int a=Integer.parseInt(str);
11         str=scanner.nextLine();
12         int b=Integer.parseInt(str);
13         System.out.println(gcd(a>b?a:b,a<=b?a:b));
14     }
15     public static  int gcd(int a,int b){
16         int r;
17         while(b!=0){
18             r=a%b;
19             a=b;
20             b=r;
21         }
22         return a;
23     }
24 }

 

欧几里得算法——求取最小公约数,布布扣,bubuko.com

欧几里得算法——求取最小公约数

标签:style   blog   java   color   算法   div   

原文地址:http://www.cnblogs.com/mingcaoyouxin/p/3842104.html

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