Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. package final_project;
  2. import java.util.Scanner;
  3. public class Lab_Schedule {
  4.  
  5. public void Schedule()
  6. {
  7. Scanner in = new Scanner(System.in);
  8. int option;
  9. System.out.println("Please select the Lab you would like to see the schedule for : ");
  10. System.out.println("\n 1.\t CSL ");
  11. System.out.println("\n 2.\t HWL ");
  12. System.out.println("\n 3.\t NBCL ");
  13. System.out.println("\n 4.\t LL ");
  14. System.out.println("\n 5.\t CR ");
  15. System.out.println("\n 6.\t Exit");
  16. option = in.nextInt();
  17. switch (option)
  18. {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement