mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
257 B
Java
13 lines
257 B
Java
class Main {
|
|
public static void main(String[] args) {
|
|
lbl:
|
|
while (true) {
|
|
int i = 0;
|
|
do {
|
|
if (i++ > 7) br<caret>eak;
|
|
if (i % 2 == 0) continue;
|
|
if (--i > 8) continue lbl;
|
|
} while (args != null);
|
|
}
|
|
}
|
|
} |