Advertisement
cindex1a

Untitled

Sep 29th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <conio.h>
  3. #include <iostream>
  4. using namespace std;
  5.  
  6. int main(){
  7.     int jumlah,harga,total;
  8.     char nama[20];
  9.     char no[20];
  10.     cout<<"==============="<<endl;
  11.     cout<<"transaksi penjualan"<<endl;
  12.     cout<<"==============="<<endl;
  13.    
  14.     cout<<"masukkan no transaksi:"<<endl;
  15.     cin>>no;
  16.     cout<<"masukkan nama:"<<endl;
  17.     cin>>nama;
  18.     cout<<"masukkan jumlah barang:"<<endl;
  19.     cin>>jumlah;
  20.     cout<<"masukkan harga barang:"<<endl;
  21.     cin>>harga;
  22.     total=jumlah*harga;
  23.     cout<<"==============="<<endl;
  24.     cout<<"total harga barang:"<<total<<endl;
  25.     return 0;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement