fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. char nama [100],pembeli[100];
  7. int harga, jumlah, total, kode;
  8.  
  9. cout<< " TOKO MARSCELL "<<endl;
  10. cout << "=========================="<<endl;
  11. cout <<"Nama Pembeli :"<<endl;
  12. cin >> pembeli;
  13. cout <<"Pilihan Handphone yang Tersedia"<<endl;
  14. cout <<"001 - Iphone X - Rp 4.000.000"<<endl;
  15. cout <<"002 - Iphone 11 - Rp 5.990.000"<<endl;
  16. cout <<"003 - Iphone 12 - Rp 6.990.000"<<endl;
  17. }
Success #stdin #stdout 0.01s 5288KB
stdin
45
stdout
     TOKO MARSCELL       
==========================
Nama Pembeli    :
Pilihan Handphone yang Tersedia
001 - Iphone X - Rp 4.000.000
002 - Iphone 11 - Rp 5.990.000
003 - Iphone 12 - Rp 6.990.000