Advertisement
Vladkoheca

main.java

Nov 22nd, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | Source Code | 0 0
  1. public class Main {
  2.     public static void main(String[] args) {
  3.         Book book = new Book("title", "Vlado", 10);
  4.         Reader reader = new Reader("Vlado1", 45, 10);
  5.  
  6.         book.displayBook();
  7.         System.out.println("namalenata cena e : " + book.applyDiscount(50));
  8.  
  9.  
  10.         System.out.println();
  11.  
  12.         reader.addBooks(5);
  13.         reader.displayReader();
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement