Skip to content

Instantly share code, notes, and snippets.

@alexejVasko
Created February 18, 2016 15:52
Show Gist options
  • Save alexejVasko/22ced1e8c7c6637fcd44 to your computer and use it in GitHub Desktop.
Save alexejVasko/22ced1e8c7c6637fcd44 to your computer and use it in GitHub Desktop.
package logic;
public class Continue {
/**
* @param args
*/
public static void main(String[] args) {
int i=1;
while(i<=10){
System.out.println(i);
i++;
if(i<=10)
continue;
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment