tsvetelinapasheva

TsvetelinaPasheva/FirstStepInCodingExercise/05.BirthdayParty

Jan 10th, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _05.BirthdayParty
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double rent = double.Parse(Console.ReadLine());
  10.             double cake = rent * 0.20;
  11.             double drinks = cake - (cake * 0.45);
  12.             double animator = rent / 3;
  13.  
  14.             double neededSum = rent + cake + drinks + animator;
  15.             Console.WriteLine(neededSum);
  16.  
  17.  
  18.  
  19.  
  20.  
  21.         }
  22.     }
  23. }
  24.  
Add Comment
Please, Sign In to add comment