123456789101112131415161718192021222324
  1. /**
  2. * Created by iyasuwatts on 10/17/17.
  3. */
  4. import java.util.Scanner;
  5. public class Main {
  6. public static void main(){
  7. }
  8. public static void Welcome(){
  9. System.out.println("Please enter your name");
  10. Scanner scanner = new Scanner(System.in);
  11. String userInput = scanner.next();
  12. if(userInput.equalsIgnoreCase("alice") || userInput.equalsIgnoreCase("bob"))
  13. {
  14. System.out.println("Welcome " + userInput);
  15. }
  16. }
  17. }