Continue Statement In Java Post author:admin Post published:August 20, 2018 Post category:Java Post comments:0 Comments The continue statement is used to jump to the next iteration of the loop immediately. class Continue1 { public static void main(String[] args) { for(int i=1;i<=10;i++) { if(i==5) { continue; } System.out.println(i); } } } Output: 1 2 3 4 6 7 8 9 10 Tags: continue statement, Continue Statement In java You Might Also Like Variables in Java August 14, 2018 Constructor In Java August 20, 2018 Break Statement In Java August 20, 2018 Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.