Question: Huge Integer Class : Create a class HugeInteger which uses a 40-element array of digits to store integers as large as 40-digit long. Provide methods
Huge Integer Class: Create a class HugeInteger which uses a 40-element array of digits to store integers as large as 40-digit long. Provide methods parse, toString, add, and subtract to manipulate objects of HugeInteger. Method parse should receive a String, extract each digit using method charAt and place the integer equivalent of each digit into the integer array and return a HugeInteger object.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
