- 1
why is loop so important
6 Answers
+ 2
simple answer is
it reduces the programm size and helps to skip repeating statements.
+ 1
things like sorting huge lists or doing amazing amounts of calculations very quickly are what computers are for. This is achievable through loops. If we didn't have loops we wouldn't have calculators that can do statistics or integrals. That's why they're important. Most programs you write will have loops.
0
Of course loop is very important in program so
that the program runs multiple times as per the condition..... Otherwise the program won't run according to the programmer or user....
0
It lets the program do stuff repeatedly and if computers are great at something, it's doing stuff repeatedly.
0
I sometimes have trouble to judge which loops is most useful? I realized I could cut my code in half using a for loop, instead if/else.
- 1
because of that the code will not run