document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  
  2. /**
  3.  * Silver Ticket
  4.  *
  5.  * @author Mohammad Tauchid
  6.  * @version 0.1
  7.  */
  8. public class Silver {
  9.     private int harga = 200000;
  10.     private int sn = 300001;
  11.    
  12.     public int getPrice () {
  13.         return harga;
  14.     }
  15.    
  16.     public void printTicket () {
  17.         System.out.println("\\t###############################");
  18.         System.out.println("\\t\\t  Dream Concert");
  19.         System.out.println("\\t    Nomor Seri\\t: " + sn++);
  20.         System.out.println("\\t    Tiket\\t: Silver");
  21.         System.out.println("\\t###############################");
  22.     }
  23. }
  24.  
');