MASIGNASUKAv102
6510051498749449419

C++ Continue Statement - Learn With AVRK

Add Comments
Monday, August 30, 2021

Continue Statement in C++ Language

The C++ continue statement is used to continue the loop. It continues the current flow of a program and skips the remaining code at specified condition.
jump-statement;
continue;
Loading...

C++ Continue Statement Example -

#include<iostream>
using namespace std;
int main()
{
for(int i=1;i<=10;i++){
if(i==5){
continue;
}
cout<<i<<"\n";
}
}


Output -

1
2
3
4
6
7
8
9
10

C++ Continue Statement with Inner Loop

C++ Continue Statement continues inner loop only if you use continue statement inside the inner loop.
#include<iostream>
using namespace std;
int main()
{
for(int i=1;i<=3;i++){
for(int j=1;j<=3;j++){
if(i==2&&j==2){
continue;
}
cout<<i<<" "<<j<<"\n";
}
}
}


Output -

1 1
1 2
1 3
2 1
2 3
3 1
3 2
3 3

Also check out this : 
C++ Break Statement - Learn With AVRK
Learn With AVRK

Learn With AVRK