码迷,mamicode.com
首页 > 编程语言 > 详细

初学Java 求最大公约数

时间:2018-09-17 17:50:39      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:gcd   ati   bsp   comm   exti   main   input   rgs   color   

 1 import java.util.Scanner;
 2 public class GreatesCommonDivisor {
 3   public static void main(String[] args) {
 4       Scanner input = new Scanner(System.in);
 5       
 6       System.out.print("Enter first integer: ");
 7       int n1 = input.nextInt();
 8       System.out.print("Enter second integer: ");
 9       int n2 = input.nextInt();
10       
11       int gcd = 1;
12       int k = 2;
13       while (k <= n1 && k <= n2) {
14           if (n1 % k == 0 && n2 % k == 0)
15               gcd = k;
16           k++;
17       }
18       
19       System.out.println("The greatest common divisor for " + n1 + " and " + n2 + " is " + gcd);
20   }
21 }

 

初学Java 求最大公约数

标签:gcd   ati   bsp   comm   exti   main   input   rgs   color   

原文地址:https://www.cnblogs.com/leo2li/p/9662841.html

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