Advertisement
yusufmukharom

Untitled

Oct 24th, 2019
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. package uts;
  2.  
  3. import java.util.*;
  4.  
  5. public class main {
  6.  
  7. public static void main(String[] args) {
  8. System.out.println("Selamat datang di I-Kios");
  9. Scanner scan = new Scanner(System.in);
  10. System.out.print("Masukkan nama > ");
  11. String nama = scan.nextLine();
  12. System.out.print("Masukkan alamat > ");
  13. String alamat = scan.nextLine();
  14. // System.out.print(cus.getAlamat());
  15. System.out.print("Masukkan no telepon > ");
  16. int hp = scan.nextInt();
  17. customer cus = new customer(nama,alamat,hp);
  18. // System.out.println(cus.name + cus.getAlamat() + cus.getHp());
  19. cus.buyProduct();
  20. // cus.setId(10);
  21.  
  22.  
  23.  
  24.  
  25. // System.out.print("lol" + input );
  26.  
  27.  
  28. }
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement