-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserPromps.java
More file actions
23 lines (21 loc) · 1.2 KB
/
UserPromps.java
File metadata and controls
23 lines (21 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public class UserPromps {
static void getUserprompts(Boolean manager){
System.out.println("Welcome to store invintory management helper, how may I help you today?");
System.out.println("You can add a new movie to invintory by entering 1");
System.out.println("You can remove a movie from invintory be entering 2");
System.out.println("Sort and Print current invintory by entering 3");
System.out.println("To look up a movie by name enter 4");
System.out.println("To look up a movie by actor enter 5");
System.out.println("To look up a movie by genre enter 6");
System.out.println("To look up a movie by year enter 7");
System.out.println("You can quit by entering 8");
}
static void getUserprompts(){
System.out.println("Welcome to store invintory management helper, how may I help you today?");
System.out.println("To look up a movie by name enter 1");
System.out.println("To look up a movie by actor enter 2");
System.out.println("To look up a movie by genre enter 3");
System.out.println("To look up a movie by year enter 4");
System.out.println("You can quit by entering 5");
}
}