0
Is for iteration being used in software programming. Excuse me if the question is supreme stupidness
2 Antworten
+ 1
Yes. when you know how many iteratios your loop need to do.
+ 1
You use loops all the time, for browsing arrays, doing a repetitive task, etc.
In general, prefer using for loops when you know how many times you will loop, and while loops otherwise.