Advertisement
Spocoman

Basketball Equipment

Nov 26th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1. using System;
  2.  
  3. namespace BasketballEquipment
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int fee = int.Parse(Console.ReadLine());
  10.             double shues = fee * 0.6;
  11.             double dress = shues * 0.8;
  12.             double ball = dress / 4;
  13.             double accessories = ball / 5;
  14.  
  15.             Console.WriteLine($"{fee + shues + dress + ball + accessories:F2}");
  16.         }
  17.     }
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement