+ 2
What is looping?
5 Answers
+ 3
whenever we want to same operation until it satisfy some condition then we use loop
+ 2
Looping is so you can make multiple conditions tested quickly and with less code some examples of loops are for or if or while
+ 2
If I am not horribly mistaken and looping is something strange in C++ :
We use looping to go over the same code again and again so we don't have to press "insert" so often cuz we are lazy!
Edit:
So in a loop-block, we go from top to bottom and execute the code in it. And depending on the type of loop we stop at some point doing that and go on with code after our block.
+ 1
Looping is playing over and over until you tell it to stop
+ 1
@Ole113 No! if-Blocks are no loops!