使用 Java 将一个 BigInteger 从另一个 BigInteger 中进行除法运算


使用 Java 中的 BigInteger divide() 方法将一个 BigInteger 从另一个 BigInteger 中进行除法运算。

首先,让我们创建一些对象。

BigInteger one, two, three;
one = new BigInteger("200");
two = new BigInteger("100");

对以上进行除法计算并赋值到第三个对象 −

three = one.divide(two);

以下是一个示例 −

示例

 在线演示

import java.math.*;
public class BigIntegerDemo {
   public static void main(String[] args) {
      BigInteger one, two, three;
      one = new BigInteger("200");
      two = new BigInteger("100");
      // division
      three = one.divide(two);
      String res = one + " / " + two + " = " +three;
      System.out.println("Result: " +res);
   }
}

输出

Result: 200 / 100 = 2

更新于: 2020 年 6 月 29 日

112 次观看

开启您的 职业生涯

完成课程获得认证

开始
广告