12345678910111213141516171819202122232425262728 |
- import java.util.*;
-
- /**
- * Created by iyasuwatts on 10/17/17.
- */
- public class Main {
-
-
- public static void main(String[] args ){
-
-
- }
-
- public void getName() {
- Scanner word = new Scanner(System.in);
- System.out.print("What is your name?");
- String name = word.nextLine();
-
- if(name.equals("Alice")) {
- System.out.println("Hi Alice");
- } else if (name.equals("Bob")) {
- System.out.println("Hi Bob");
- } else {
- System.out.println("Hi YOU");
- }
- }
- }
|