mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
13 lines
171 B
Plaintext
13 lines
171 B
Plaintext
public class X {
|
|
int f(int a) {
|
|
if (a == 0) {
|
|
return 0;
|
|
}
|
|
<spot>else</spot> if (a == 1) {
|
|
return 2;
|
|
}
|
|
else {
|
|
return 18;
|
|
}
|
|
}
|
|
} |