Me and my buddy have been working on our project thats due monday night for a while. can't figure it out. Any help would be nice :D
Definition: A very long number (VLI) is a nonnegative integer that has no more than 100 digits and it is represented as a pair of two elements <Size, Numb>, where:
? Size ? number of decimal digits;
? Numb - an array of decimal digits (each decimal digit is store in one array element).
Example:
const int MAXDIGITS = 100;
int Size = 21;
int VLI[MAXDIGITS]={1,2,3,4,5,6,7,8,9,0,9,8,7,6,5,4,3,2,1,0,9};
//
// The number is: 123456789098765432109
// The number has 21 decimal digits
//
1. Write a C++ function named InputVLI that inputs a VLI.
2. Write a C++ function named OutputVLI that outputs a VLI.
3. Write a C++ function named AddVLI that returns the sum of two VLIs.
4. Write a C++ function named CompVLI that compares VLIs.
5. Write a main function that calls the functions InputVLI, OutputVLI, AddVLI, and CompVLI. Execute the program for 5 different input data.