-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReport
More file actions
23 lines (21 loc) · 754 Bytes
/
Report
File metadata and controls
23 lines (21 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
here,I implement a simple library management system using a switch statement in Java and operated the following operations Add a new book, Check Out a book, display specific book status, search specific book, and display book details using different class
menu
Exit Application
Add a New Book
Upgrade Quantity of a Book
Search a Book
Show All Books
Register Student
Show All Registered Students
Check Out Book
Check-In Book
Implementation:
creating 5 files including our MAIN CLASS
Library
Students
Student
books
book
Class library is the parent class .book class and books class internally realted eachother as student and students class.
finally, created menu using do-while loop and nested switch case(search choice 0-8)
while (choice != 0);