![]() |
need help on this program output
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 |
Re: need help on this program output
The loop continues till it does not satisfy (i % j) = = 0 and when it satisfy the value is 9.
|
| All times are GMT +5.5. The time now is 07:42. |