0
Repeat statement??
Does a statement exist to repeat an iteration?? Like we have continue to skip and break to leave the loop but is there any to repeat??
1 Answer
+ 2
you can use "goto" or do while loop
boolean repeat;
do {
repeat=false;
//your loop
//use repeat=true if you want to repeat
}while(repeat);