Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public void addBook() {
  2. list.add(new Book(JOptionPane.showInputDialog("Enter name"),
  3. JOptionPane.showInputDialog("Enter Author"),
  4. Integer.parseInt(JOptionPane.showInputDialog("Enter price"))
  5. ));
  6. }
  7.  
  8. public void showBooks() {
  9. String st=" ";
  10. for (Book x:list){
  11. st += ""+x+"/n";
  12. }
  13. JOptionPane.showMessageDialog(st);
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement