I n programming how does on know where to put loops and which one?

944 views

I n programming how does on know where to put loops and which one?

In: Other

6 Answers

Anonymous 0 Comments

Generally, “for” loops are used when there is a definite number of times you need to do something, and “while” loops are used when the number of loops needed is unknown.

You are viewing 1 out of 6 answers, click here to view all answers.