Advertisement
Spocoman

08. Basketball Equipment

Aug 31st, 2023 (edited)
802
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     int tuitionFee;
  7.     cin >> tuitionFee;
  8.  
  9.     double shoesPrice = tuitionFee * 0.6;
  10.     double teamClothes = shoesPrice * 0.8;
  11.     double ball = teamClothes / 4;
  12.     double accessories = ball / 5;
  13.  
  14.     double totalPrice = tuitionFee + shoesPrice + teamClothes + ball + accessories;
  15.  
  16.     cout << totalPrice << endl;
  17.  
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement