mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
16 lines
457 B
Java
16 lines
457 B
Java
class C {
|
|
void foo(boolean a, boolean b, boolean c, boolean d, boolean e) {
|
|
/*c3*/
|
|
if (a &&/*c1*/ b) {
|
|
if (c &&/*c2*/ d) {
|
|
System.out.println("abcd");
|
|
} else if (e) {
|
|
System.out.println("abe");
|
|
} else if (a && /*c4*/ c) {
|
|
System.out.println("ac");
|
|
}
|
|
} else if (a && /*c4*/ c) {
|
|
System.out.println("ac");
|
|
}
|
|
}
|
|
} |