0

What is the mean of loop??

15th Dec 2016, 10:32 PM
Drew
Drew - avatar
6 Answers
+ 3
a loop is any code that runs more than once eg for ( int x = 0; x < 200; X++) { int y = 1; cout << y; } this loop will run the code between rhe curly brackets 200 times each time adding 1 to y and printing that value to the screen.
15th Dec 2016, 11:11 PM
Jason Hoffman
Jason Hoffman - avatar
+ 3
it is a structure that execute statements repeatedly until the condition satisfied ..there are three loops in Java that is for ,while,do while.
16th Dec 2016, 2:46 PM
Alaghusooriya EM
Alaghusooriya EM - avatar
+ 1
lol
15th Dec 2016, 11:18 PM
Jason Hoffman
Jason Hoffman - avatar
0
it is like a circle which the aur rat will escape and take the cheese if the given condition is satisfied.
15th Dec 2016, 11:09 PM
Yunus USLU
Yunus USLU - avatar
0
My description is more satisfying :P
15th Dec 2016, 11:12 PM
Yunus USLU
Yunus USLU - avatar
0
Its just a Repeter!!! And repets your codes You can define eg 2 times ...
17th Dec 2016, 9:12 PM
Saeid Khajerezaei yazdi
Saeid Khajerezaei yazdi - avatar