Skip to content

Instantly share code, notes, and snippets.

@edinak1
Created October 23, 2015 19:52
Show Gist options
  • Select an option

  • Save edinak1/06b646005af6ff3f45b8 to your computer and use it in GitHub Desktop.

Select an option

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