TRY THIS
Implement square() without using the multiplication operator; that is, do the x*x by repeated addition(start a variable result at 0 and add x to it x times). Then run some version of "the first program" using that square().
TRY THIS
Implement square() without using the multiplication operator; that is, do the x*x by repeated addition(start a variable result at 0 and add x to it x times). Then run some version of "the first program" using that square().