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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!