Skip to content

Instantly share code, notes, and snippets.

@ilyaBrandon
Created February 24, 2016 19:32
Show Gist options
  • Save ilyaBrandon/47c14e48e48ff27bff61 to your computer and use it in GitHub Desktop.
Save ilyaBrandon/47c14e48e48ff27bff61 to your computer and use it in GitHub Desktop.
public class BATTLEFRONT {
public static void main(String[] args) {
int i=1;
while(i<=99){
System.out.println(i);
i++;
if(i<100){
continue;
}
break;
}
}
}
@liuiv15
Copy link

liuiv15 commented Feb 25, 2016

условия задачи изменены. Почему?

@ilyaBrandon
Copy link
Author

мне показалось что это будет не интересно

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment