document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /** Main Class @author (your name) @version (a version number or a date) */
  2.  
  3. import java.util.Scanner;
  4. public class main
  5. {
  6.     public static void main (String[] args)
  7.     {
  8.         layar l = new layar();
  9.         mesin r = new mesin();
  10.         Scanner scan= new Scanner(System.in);
  11.         int tampung;
  12.        
  13.         System.out.println("         ----------------------------------------------\\n               ~~ Selamat Datang Di Bahagia Mart ~~\\n         ----------------------------------------------");
  14.        
  15.         while(l.DisplayMenu()==1)
  16.         {
  17.             l.MessageLine("\\n - Masukkan Kode Barang     : ");
  18.             tampung=scan.nextInt();
  19.             r.tombol(tampung);
  20.             r.openFile();
  21.             r.Logic();
  22.            
  23.            
  24.         }
  25.         r.closeFile();
  26.         r.hitung();
  27.         l.MessageLine("\\n\\n         =============================================");
  28.         l.MessageLine("\\n         (^___^) Terima Kasih Telah Berbelanja (^___^)");
  29.         l.MessageLine("\\n         =============================================");
  30.     }
  31. }
');