12345678910111213141516171819202122 |
- /**
- * Created by iyasuwatts on 10/17/17.
- */
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args ){
- }
-
- public void greeting(){
- Scanner keyboard = new Scanner(System.in);
- System.out.print("what is your name?");
- String name = keyboard.nextLine();
-
- if(name.equals("Alice")){
- System.out.println("Hello Alice!");
- } else if (name.equals("Bob")){
- System.out.println("Hello Bob!");
- } else {
- System.out.println("Hello " + name);
- }
- }
- }
|