How about using something like this,
boolean run = true;
while(run) {
//when the condition to terminate the program is met
//set run to false
run = false;
}
1
solved I want my program to run again and again without getting stop
How about using something like this,
boolean run = true;
while(run) {
//when the condition to terminate the program is met
//set run to false
run = false;
}
1
solved I want my program to run again and again without getting stop