mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
13 lines
278 B
Java
13 lines
278 B
Java
public class Test {
|
|
public int test(int x) {
|
|
int i;
|
|
for (i = 0; i <= x; i++) {
|
|
<selection>if (i == 42) {
|
|
break;
|
|
} else if (i == 17) {
|
|
break;
|
|
}</selection>
|
|
}
|
|
return i;
|
|
}
|
|
} |