0
How to fix while loop infiniti?
5 Respuestas
+ 1
Your welcome
0
Create a boolean variable and replace it with the 1 in the while loop's param. Then change it to false in the loop with a certain condition
0
Please give me an example...
0
bool cond = true;
while (cond){
//do stuff
// cond = false to break the loop
}
0
Thanks...