-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibrary.java
More file actions
67 lines (63 loc) · 1.98 KB
/
Copy pathLibrary.java
File metadata and controls
67 lines (63 loc) · 1.98 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import java.util.Scanner;
public class Library {
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
System.out.println(
"********************Welcome to the GFG Library!********************");
System.out.println(
" Select From The Following Options: ");
System.out.println(
"**********************************************************************");
books ob = new books();
students obStudent = new students();
int choice;
int searchChoice;
do {
ob.dispMenu();
choice = input.nextInt();
switch (choice) {
case 1:
book b = new book();
ob.addBook(b);
break;
case 2:
ob.upgradeBookQty();
break;
case 3:
System.out.println(
" press 1 to Search with Book Serial No.");
System.out.println(
" Press 2 to Search with Book's Author Name.");
searchChoice = input.nextInt();
switch (searchChoice) {
case 1:
ob.searchBySno();
break;
case 2:
ob.searchByAuthorName();
}
break;
case 4:
ob.showAllBooks();
break;
case 5:
student s = new student();
obStudent.addStudent(s);
break;
case 6:
obStudent.showAllStudents();
break;
case 7:
obStudent.checkOutBook(ob);
break;
case 8:
obStudent.checkInBook(ob);
break;
default:
System.out.println("ENTER BETWEEN 0 TO 8.");
}
}
while (choice != 0);
}
}