When to use while loop and when to use for loop? is their any perfect example to answer my question | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

When to use while loop and when to use for loop? is their any perfect example to answer my question

10th Jan 2017, 3:28 AM
srikanth katuri
srikanth katuri - avatar
1 ответ
+ 3
while loop is generally used when you don't know the number of times the loop should run. eg:- while(flag == true) { if(someCondition) flag = false; } for loop is used when you know the number of times the loop should run. eg:- for(int i = 0; i < array.length; i++) { // do something to each element of the array } this is how they are generally used, however they can interchange roles with a little work around.
10th Jan 2017, 3:44 AM
Nikunj Arora
Nikunj Arora - avatar