if contune java code example
Example 1: break java
//Conclusion
break == jump out side the loop
continue == next loop cycle
return == return the method/end the method.
for(int i = 0; i < 5; i++) {
System.out.println(i +"");
if(i == 3){
break;
}
}
System.out.println("finish!");
/* Output
0
1
2
3
finish!
*/
Example 2: what does the continue keyword do in java
int number = 4;
int finalnum = 20;
while(number <= finalnum){
number++;
if(number %2 != 0){//Each odd number restarts the loop
continue;
}
System.out.println("Even Number!: "+ number);
}
}//EOM