Problem 1: Written Answers |
Program 1: BigNumber class |
Test Execution 1: x = 647483147999 y = 991999999999 x.add(y); should produce 1639483147998 |
Test Execution 2: x = 647483147911 y = 21 x.add(y); should produce 647483147932 |
Test Execution 3: x = 19 y = 765521 x.add(y); should produce 765540 |
Program 2: Rectangle class and Square class |