Advertisement
desislava_topuzakova

Untitled

Jan 30th, 2024
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. const double PRICE_FOR_SQUARE_METER = 7.61;
  8. const double DISCOUNT = 0.18;
  9.  
  10. double greenYard;
  11. cin >> greenYard;
  12.  
  13. double wholeYard = greenYard * PRICE_FOR_SQUARE_METER;
  14.  
  15. cout << "The final price is: " << wholeYard - DISCOUNT * wholeYard << " lv." << endl;
  16. cout << "The discount is: " << DISCOUNT * wholeYard << " lv.";
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement