Advertisement
Spocoman

Football Kit

Sep 19th, 2023 (edited)
1,060
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.68 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.  
  8.     double shirtsPrice, neededSum, totalSum;
  9.     cin >> shirtsPrice >> neededSum;
  10.  
  11.     double shortsPrice = shirtsPrice * 0.75;
  12.     double socksPrice = shortsPrice / 5;
  13.     double sneakersPrice = (shirtsPrice + shortsPrice) * 2;
  14.  
  15.     totalSum = (shirtsPrice + shortsPrice + socksPrice + sneakersPrice) * 0.85;
  16.  
  17.     if (totalSum >= neededSum) {
  18.         printf("Yes, he will earn the world-cup replica ball!\nHis sum is %.2f lv.\n", totalSum);
  19.     }
  20.     else {
  21.         printf("No, he will not earn the world-cup replica ball.\nHe needs %.2f lv. more.\n", neededSum - totalSum);
  22.     }
  23.     return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement