mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
13 lines
308 B
Java
13 lines
308 B
Java
class Test {
|
|
public void test(int x , int y) {
|
|
while (x < 10) {
|
|
x++;
|
|
if (x <= y) {
|
|
<selection>if (x == y) continue;
|
|
System.out.println();</selection>
|
|
} else {
|
|
System.out.println();
|
|
}
|
|
}
|
|
}
|
|
} |