continue in java
int i=0;
while(i<10){
if(i%2==0){
i++;
continue;// If it's pair we return to the while
}
System.out.println(i);// If is not we print it.
i++;
}
continue in java
int i=0;
while(i<10){
if(i%2==0){
i++;
continue;// If it's pair we return to the while
}
System.out.println(i);// If is not we print it.
i++;
}
Continue statement in java
// continue in java example
import java.util.*;
public class ContinueJavaExample
{
public static void main(String[] args)
{
for(int a = 1; a <= 10; a++)
{
if(a % 2 != 0)
{
continue;
}
System.out.println(a + " ");
}
}
}
continue in java
int i = 0;
while (i < 10) {
if (i == 4) {
i++; //why do I need this line ?
continue;
}
System.out.println(i);
i++;
}
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us