We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 697881a + de97f5e commit 5f5c93eCopy full SHA for 5f5c93e
BookManager.java
@@ -49,6 +49,7 @@ public static void main(String[] args) {
49
JOptionPane.showMessageDialog(null, "Book added successfully!");
50
break;
51
52
+
53
case "2": //To Remove Book
54
String isbnToRemove = JOptionPane.showInputDialog("Enter ISBN of the Book to Remove:");
55
boolean found = false;
@@ -66,7 +67,7 @@ public static void main(String[] args) {
66
67
}
68
69
- case "3": // To View All Books
70
+ case "3": //To View All Books
71
String allBooks = "Books in Library:\n";
72
boolean hasBooks = false;
73
for (int i = 0; i < bookCount; i++) {
0 commit comments