8 lines
96 B
Java
8 lines
96 B
Java
if (c == 'a') {
|
|
foo();
|
|
} else if (c == 'b') {
|
|
bar();
|
|
foobar();
|
|
} else {
|
|
foobar();
|
|
}
|