mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
223 B
Plaintext
15 lines
223 B
Plaintext
public class X {
|
|
int f(int a) {
|
|
<spot>if</spot> (a == 0) {
|
|
System.out.println("1");
|
|
}else{
|
|
System.out.println("2");
|
|
}
|
|
if (a == 0) {
|
|
return 2;
|
|
}
|
|
else {
|
|
return 18;
|
|
}
|
|
}
|
|
} |