Computer Science, asked by prasad110, 1 year ago

in computer what does continue mean

Answers

Answered by amal14
1
continue is a statement applied in looping statements like for loop and while loop. it is applied to skip only one execution of the loop and continue for the next execution.
eg:
program to print first five natural numbers excluding 3
for(I=1;I<=5;I++)
{

if(I==3)
continue;
System.out.println(I);
}

amal14: hope it helps
prasad110: can u follow me
Similar questions