Advertisement
khisby

soal2

Dec 3rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8.     int jumlah = 5;
  9.     float harga = 5203.02,total;
  10.  
  11.     total = jumlah*harga;
  12.     cout << "Total harga barang adalah : " << total;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement