Re: A school Student exam question?
Posted By:
Yingyi_Chu
Posted On:
Thursday, April 18, 2002 04:12 AM
I always use forloop.
i think any logic done by whileloop can also be done by forloop
Re: A school Student exam question?
Posted By:
Bozidar_Dangubic
Posted On:
Thursday, April 11, 2002 04:47 AM
use for loop when you know exactly how many iterations the loop will need to be executed. use while loop when you need to iterate until some condition is met.