17 lines
474 B
Java
17 lines
474 B
Java
import javax.swing.JOptionPane;
|
|
class Scratch {
|
|
public static void main(String[] args) {
|
|
String idots= JOptionPane.showInputDialog("What is your name?");
|
|
|
|
switch (idots) {
|
|
case "Ggsya" -> System.out.println("Lord Ggsleeb");
|
|
case "KhaledHn1" -> System.out.println("Lord Gigalara");
|
|
case "Roosya" -> System.out.println("Lord Galanbees");
|
|
default -> System.out.println("noob not found");
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
} |