While Loops
while(true) {
if(maybe)
break;
<<< "running..." >>>;
}
well this may output nothing... lets try
<<< maybe >>>;
do{
if(maybe)
break;
<<< "running..." >>>;
} while(true);
while(true) {
if(maybe)
break;
<<< "running..." >>>;
}
well this may output nothing... lets try
<<< maybe >>>;
do{
if(maybe)
break;
<<< "running..." >>>;
} while(true);