-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenu.java
More file actions
36 lines (31 loc) · 1.21 KB
/
Menu.java
File metadata and controls
36 lines (31 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package contacts_list;
public class Menu {
public static void mainMenu(){
System.out.println("Válasszon az alábbiak közül!");
System.out.println("[1] Új névjegy felvétele");
System.out.println("[2] Névjegy adatainak módosítása");
System.out.println("[3] Névjegy törlése");
System.out.println("[4] Listázás");
System.out.println("[5] Keresés");
System.out.println("[6] Kilépés");
System.out.print("Választás: ");
}
public static void listMenu(){
System.out.println("Mi szerint szeretne listázni?");
System.out.println("[1] Név");
System.out.println("[2] Becenév");
System.out.println("[3] Rendezés nélkül");
System.out.print("Választás: ");
}
public static void searchMenu(){
System.out.println("Mi szerint szeretne keresni?");
System.out.println("[1] Név");
System.out.println("[2] Becenév");
System.out.println("[3] Cím");
System.out.println("[4] Telefonszám");
System.out.print("Választás: ");
}
public static void exit(){
System.out.println("Viszontlátásra!");
}
}