Home Java Java-biginteger Java BigInteger example



Java BigInteger example
Posted on: November 4, 2008 at 12:00 AM
BigInteger class provides us operations for modular arithmetic (such as add, subtract) , prime generation , bit manipulation and many other useful operations.

Java BigInteger example

     

BigInteger class provides us operations for modular arithmetic (such as add, subtract) , prime generation , bit manipulation and many other useful operations.

Here in this example of BigInteger we have created two big integer variables and we are going to multiply them and will store that result in another BigInteger variable. Here is the full example code of BigIntegerExample.java as follows:

 

 

 

BigIntegerExample.java

import java.math.BigInteger;
public class BigIntegerExample 
{
  public static void main(String[] args
  {
  BigInteger bigInteger1 = new BigInteger ("123456789");
  BigInteger bigInteger2 = new BigInteger ("112334");
  BigInteger bigIntResult =
    bigInteger1.multiply
(bigInteger2)
  System.out.println("Result is  ==> " + bigIntResult);
  }
}

Output of the above program is as follows:

C:\biginteger>javac BigIntegerExample.java

C:\biginteger>java BigIntegerExample
Result is ==> 13868394935526

Download Source Code

Related Tags for Java BigInteger example:
cideclassiointegeripvitracintoperaidarithmeticbigintegerformanipulationaddbitgenerationbieitdesuseulpeimmaninmodsuboperationsasmnttrddoperationmodularadclesbigintsubtractbigmeprossuginatanyracratioimeduandaractssrithatimanyprndono


More Tutorials from this section

Ask Questions?    Discuss: Java BigInteger example   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.