what is the function of continue statement in java?
Answers
Answered by
3
Thecontinue keyword can be used in any of the loop control structures. It causes the loop to immediately jump to the next iteration of the loop. ... In a while loop or do/while loop, control immediately jumps to the Boolean expression.
Debprotim27:
Both have copied from google ... r8????
Answered by
0
The continue keyword can be used in any of the loop control structures. It causes the loop to immediately jump to the next iteration of the loop. ... In a while loop or do/while loop, control immediately jumps to the Boolean expression.
Similar questions