need help on this program output

Newbie Member
15Jul2006,18:08   #1
carl's Avatar
Hi all experts out there ....

need some ...new to programming..

below is the program for which i need to know the the process....I know the aswer which is = 9.....but need to know how come... what is the calculation.

Consider the following program segment:

i = 6720; j = 4;

WHILE ( (i % j) = = 0){

i = i / j;

j = j + 1;

}

plz help...need it asap.

thanks & regards,

carl

carl.banderas@rediffmail.com
Go4Expert Founder
17Jul2006,10:44   #2
shabbir's Avatar
The loop continues till it does not satisfy (i % j) = = 0 and when it satisfy the value is 9.