Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.math.BigInteger;

public class Main {

    public static void main(String[] args) {

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

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

        System.out.println("Quotient is " + bi[0]);
        System.out.println("Remainder is " + bi[1]);
    }
}