Skip to content

Instantly share code, notes, and snippets.

@alexejVasko
Created February 18, 2016 15:44
Show Gist options
  • Select an option

  • Save alexejVasko/5dc007a21931f445bb33 to your computer and use it in GitHub Desktop.

Select an option

Save alexejVasko/5dc007a21931f445bb33 to your computer and use it in GitHub Desktop.
package logic;
public class Break {
/**
* @param args
*/
public static void main(String[] args) {
int i=1;
while (true){
System.out.println(i);
i++;
if(i == 11)
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment