Book Collections
Book Collections
*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
class Book{
int bookid;
String bookname;
String author;
double price;
if(ans1.size()==0){
System.out.println("No book found with given author name");
}
else{
for(Book b:ans1){
System.out.println(b);
}
}