How many times will the body of the following loop execute? nt m = 10,n = 7; while(m%n>0) {… m = m+1; n = n + 2; …. }
Reveal answer
Fill a bubble to check yourself
How many times will the body of the following loop execute? nt m = 10,n = 7; while(m%n>0) {… m = m+1; n = n + 2; …. }