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 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++;
}
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
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