Hi,
is there no use of continue in do While loop?
please look in following code
public class Continue {
public static void main(
String [] a){
boolean flag =true;
int i=0;
do{
flag= false;
System.out.println(i++);
flag = i<10;
continue;//here with it/with out the same out put
}while(flag?true:false);
}
}