Computer Applications
What is the purpose of using continue statement in a program?
Java Iterative Stmts
90 Likes
Answer
continue statement is used to unconditionally jump to the next iteration of the loop, skipping the remaining statements of the current iteration.
Answered By
52 Likes