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