Big Integer UPDATED
I cannot link My CalculatorProgram.java with my Applet.
I created a package for both of them , but Netbeans says that there is no main class .package Calcultor;
import java.math.BigInteger;
publicclass CalculatorProgram{
private BigInteger IntegerOne;
private BigInteger IntegerTwo;
//
public CalculatorProgram(){this(BigInteger.ZERO, BigInteger.ZERO);}
public CalculatorProgram(BigInteger IntegerOne, BigInteger IntegerTwo){
this.IntegerOne= IntegerOne;
this.IntegerTwo= IntegerTwo;
}
//
public BigInteger manipulate(){return IntegerOne.add(IntegerTwo);}
public BigInteger subtract(){return IntegerOne.subtract(IntegerTwo);}
public BigInteger multiply(){return IntegerOne.multiply(IntegerTwo);}
}

