Java.math.BigInteger.divideAndRemainder()方法範例


java.math.BigInteger.divideAndRemainder(BigInteger val) 返回包含兩個BigIntegers的(this / val) ,其次(this % val) 的陣列。 

宣告

以下是java.math.BigInteger.divideAndRemainder()方法的宣告

public BigInteger[] divideAndRemainder(BigInteger val)

引數

  • val - 由此BigInteger是進行除法運算(除數),並計算的餘數

返回值

此方法返回2個BigIntegers的陣列:商值(this / val) 是初始元素,剩餘部分 (this % val) 是最後一個元素。

異常

  • ArithmeticException - 如果val是0

例子

下面的例子顯示math.BigInteger.divideAndRemainder()方法的用法

package com.yiibai;

import java.math.*;

public class BigIntegerDemo {

public static void main(String[] args) {

        // create 2 BigInteger objects
        BigInteger bi1, bi2;

        bi1 = new BigInteger("-100");
        bi2 = new BigInteger("3");

        // BigInteger array bi stores result of bi1/bi2
	BigInteger bi[] = bi1.divideAndRemainder(bi2);

        // print quotient and remainder
	System.out.println("Division result");
	System.out.println("Quotient is " + bi[0] );
	System.out.println("Remainder is " + bi[1] );
    }
}

讓我們編譯和執行上面的程式,這將產生以下結果:

Division result
Quotient is -33
Remainder is -1