0
What is the mean of loop??
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.
+ 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.
+ 1
lol
0
it is like a circle which the aur rat will escape and take the cheese if the given condition is satisfied.
0
My description is more satisfying :P
0
Its just a Repeter!!!
And repets your codes
You can define eg 2 times
...