fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. double calculateTotal(double price) {
  5. double discount = 0.0;
  6.  
  7. if (price > 1000) {
  8. discount = 0.05; // Знижка 5%
  9. } else if (price > 500) {
  10. discount = 0.03; // Знижка 3%
  11. }
  12.  
  13. double finalPrice = price - (price * discount);
  14. return finalPrice;
  15. }
  16.  
  17. int main() {
  18. double price;
  19.  
  20. cout << "Введіть вартість покупки: ";
  21. cin >> price;
  22.  
  23. double total = calculateTotal(price);
  24.  
  25. cout << "Сума з урахуванням знижки: " << total << " грн" << endl;
  26.  
  27. return 0;
  28. }
  29.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
Введіть вартість покупки: Сума з урахуванням знижки: 6.95271e-310 грн