1. import java.util.Scanner;
  2.  
  3. public class userInterface {
  4.  
  5.  
  6. public static int switchChoice;
  7. public static String verb;
  8. public static String word;
  9. public static Scanner input = new Scanner(System.in);
  10.  
  11. public static void main(String[] args) {
  12.  
  13. System.out.println("Welcome to Tommy's amazing Japanese translation service!");
  14. System.out.println("Enter the selection of what you would like to do:");
  15. System.out.println("");
  16. System.out.println("(1) Conjugate a verb. (4) More to come!");
  17. System.out.println("(2) Translate a word. (5) More to come!");
  18. System.out.println("(3) More to come! (6) More to come!");
  19. switchChoice = input.nextInt();
  20.  
  21. switch(switchChoice){
  22. case 1:{
  23. System.out.println("Enter the verb to be conjugated: ");
  24. verb = input.nextLine();
  25. System.out.println(verb);
  26. verbConjugation.verbClassification(verb);
  27. break;
  28. }
  29. case 2:{
  30. System.out.println("Enter the word to be translated: ");
  31. word = input.nextLine();
  32. dictionary.dictionaryDatabase(word);
  33. break;
  34. }
  35.  
  36. }
  37.  
  38. }
  39.  
  40. }
  41.