fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int harga = 3000;
  6. int jumlahhari = 30;
  7. int bebek = 27;
  8. int kilo, total;
  9.  
  10. if (bebek >= 20 && bebek <= 25) {
  11. kilo = 1;
  12. } else if (bebek >= 26 && bebek <= 35) {
  13. kilo = 2;
  14. } else if (bebek >= 36 && bebek <= 45) {
  15. kilo = 3;
  16. }
  17.  
  18. total = kilo * harga * jumlahhari;
  19.  
  20. cout << "Masukkan Jumlah Ternak : " << bebek << endl;
  21. cout << "Total Kebutuhan Dana : " << total << endl;
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Masukkan Jumlah Ternak : 27
Total Kebutuhan Dana : 180000