mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
11 lines
190 B
Java
11 lines
190 B
Java
public class X {
|
|
void f(boolean isMale) {
|
|
String title;
|
|
if (isMale) {
|
|
title = "Mr.";
|
|
} else {
|
|
title = "Ms.";
|
|
}
|
|
System.out.println("title = " + title);
|
|
}
|
|
} |