IvetValcheva

08. Basketball Equipment

Oct 31st, 2021
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.89 KB | None | 0 0
  1. using System;
  2.  
  3. namespace BasketballEquipment
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             //от конзолата да прочетем таксата за една година
  10.             int taxPerYear = int.Parse(Console.ReadLine());
  11.  
  12.             //Баскетболни кецове, екип, топка ,аксесоари
  13.             double trainersPrice = taxPerYear - (taxPerYear*0.4);
  14.             double outfitPrice = trainersPrice - (trainersPrice * 0.2);
  15.             double ballPrice = outfitPrice/4;
  16.             double accPrice = ballPrice / 5;
  17.  
  18.             // сумата на всички разходи
  19.             double expenses = taxPerYear + trainersPrice + outfitPrice + ballPrice + accPrice;
  20.  
  21.             //изведем на конзолата сумата
  22.             Console.WriteLine(expenses);
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment