Question: while ( m % n != 0 ) { int tmp = m; m = n; n = tmp % n; } cout < <
while ( m % n != 0 )
{ int tmp = m;
m = n;
n = tmp % n;
} cout << n;
what would be displayed if instead, prior to the loop, we had m == 17 and n == 7?
I am confused on how to work this problem out. Could someone explain the steps? Thanks!
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
