Question: C++ HELP define a class named MYINT that stores an integer and has functions to get and set the integers value. Then, overload the []
C++ HELP
define a class named MYINT that stores an integer and has functions to get and set the integers value. Then, overload the [] operator so that the index returns the digit in position i , where i = 0 is the least-significant digit. If no such digit exists then 1 should be returned. For example, if x is of type MYINT and is set to 418, then x [0] should return 8, x [1] should return 1, if its less than 0 (negative number) make it postitive//x [2] should return 4, and x [3] should return 1.
HINT use %
Use .h, .cpp, .main files
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
