IvetValcheva

Basketball Equipment

Jan 10th, 2022
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.97 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _08._Basketball_Equipment
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double taxPerYear = double.Parse(Console.ReadLine());
  10.  
  11.             //кецове –  40 % по - малка от таксата за една година
  12.             //екип – 20 % по - евтина от тази на кецовете
  13.             //топка –  1 / 4 от цената на баскетболния екип
  14.             //аксесоари –  1 / 5 от цената на баскетболната топка
  15.             double shouesPrice = taxPerYear- taxPerYear * (40 / 100.0);
  16.             double outfitPrice = shouesPrice - shouesPrice * (20 / 100.0);
  17.             double ballPrice = outfitPrice / 4;
  18.             double accPrice = ballPrice / 5;
  19.  
  20.             double sum = taxPerYear + shouesPrice + outfitPrice + ballPrice + accPrice;
  21.  
  22.             Console.WriteLine(sum);
  23.         }
  24.     }
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment