1. import java.util.Scanner;
  2.  
  3. public class userInterface {
  4.  
  5.  
  6. public static int switchChoice;
  7. public static String myverb;
  8. public static String word;
  9. public static Scanner input = new Scanner(System.in);
  10.  
  11.  
  12. public static void main(String[] args) {
  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.  
  20. switchChoice = input.nextInt();
  21. input.nextLine();
  22. switch(switchChoice){
  23. case 1:{
  24. System.out.println("Enter the verb to be conjugated: ");
  25. myverb = input.nextLine();
  26. System.out.println(myverb);
  27. // verbConjugation.verbClassification(verb);
  28. break;
  29. }
  30. case 2:{
  31. System.out.println("Enter the word to be translated: ");
  32. word = input.nextLine();
  33. // dictionary.dictionaryDatabase(word);
  34. break;
  35. }
  36.  
  37. }
  38.  
  39. }
  40.  
  41. }
  42.