Create a class HugeInteger which uses a 40-element
Create a class HugeInteger which uses a 40-element array of digits to store integers as large as 40 digits each. Provide methods a) Input b) ToString c) Add For comparing HugeInteger objects, provide the following methods: a) IsEqualTo b) IsNotEqualTo c) IsGreaterThan d) IsLessThan e) IsGreaterthanOrEqualTo f) IsLessThanOrEqualTo Each of these is a method that returns true if the relationship holds between the two HugeInteger objects and returns false if the relationship does not hold. ? In the Input method, use the string method ToCharArray to convert the input string into an array of characters, then iterate through these characters to create your HugeInteger. toCharArray method
The post Create a class HugeInteger which uses a 40-element appeared first on My Assignment Online.
