如何计算3个数字的GCD [英] whats the approach to calculate GCD for 3 numbers

查看:122
本文介绍了如何计算3个数字的GCD的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

用三个数字查找GCD(最大公分频器)的方法是什么?
以下代码显示了具有2个数字的方法,该方法使用Euclids算法的基本版本(因为输入为正)来计算GCD.

What is the approach to find the GCD (Greatest Common Divider) with three numbers?
The following code shows the approach with 2 numbers, which uses an elementary version of Euclids algorithm (since input is positive) to calculated the GCD.

public class GCD {  
 public  static void main(String[] args) {

  int age1 = 10;
  int age2 = 15;

  int multiple1OfGCD = age1;
  int multiple2OfGCD = age2;



  while (multiple1OfGCD != multiple2OfGCD ) {

   if (multiple1OfGCD > multiple2OfGCD) {
    multiple1OfGCD -= multiple2OfGCD;
   }
   else {
    multiple2OfGCD -= multiple1OfGCD;
   }
  }

  System.out.println("The GCD of " + age1 + " and " + age2 + " is " + multiple1OfGCD);


  int noOfPortions1 = age1 / multiple1OfGCD;
  int noOfPortions2 = age2 / multiple1OfGCD;




  System.out.println("So the cake should be divided into "

     + (noOfPortions1 + noOfPortions2));

  System.out.println("The " + age1 + " year old gets " + noOfPortions1

     + " and the " + age2 + " year old gets " + noOfPortions2);

 } 
}

我希望输出如下图所示:

I want the output to look like in picture below:

.

推荐答案

希望会有所帮助

 public static void main (String[] args)
{
 int a,b,c;
 a=10;
 b=15;
 c=20;
 int d= gcd(a,b,c);
 System.out.println("The GCD of "+a+", "+b+" and "+c+ " is "+d);
 int cake=a/d+b/d+c/d;
 System.out.println("So the cake is divided into "+ cake);
 System.out.println("The "+a+ " Years old get "+a/d );
 System.out.println("The "+b+ " Years old get "+b/d );
 System.out.println("The "+c+ " Years old get "+c/d );
}

public static int gcd(int a, int b, int c){
 return calculateGcd(calculateGcd(a, b), c);
}

public static int calculateGcd(int a, int b) {
    if (a == 0) return b;
    if (b == 0) return a;
    if (a > b) return calculateGcd(b, a % b);
    return calculateGcd(a, b % a);
 }
}

这篇关于如何计算3个数字的GCD的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆