Computer Applications
What is the purpose of using continue statement in a program?
Java Iterative Stmts
76 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
44 Likes