| 123456789101112131415161718192021222324252627282930 |
- /**
- * Created by iyasuwatts on 10/17/17.
- */
-
-
- import java.util.Scanner;
-
- public class Main {
-
- public static void main(String[] args ){
- Scanner scan = new Scanner(System.in);
-
- String name = "";
- System.out.println("Enter your name...");
- name = scan.nextLine();
- if(name.equalsIgnoreCase("alice")){
- System.out.println("Hi, Alice!");
-
- }
- else if(name.equalsIgnoreCase("bob")){
- System.out.println("Hi, Bob!");
-
- }
- else{
- System.out.println("who are you? go away");
-
- }
- }
- }
|