Created
February 24, 2016 19:32
-
-
Save ilyaBrandon/47c14e48e48ff27bff61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; | |
| } | |
| } | |
| } |
Author
мне показалось что это будет не интересно
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
условия задачи изменены. Почему?