Advertisement
spasnikolov131

Untitled

Jun 10th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Birthday_party
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9.  
  10. int roomRent = int.Parse(Console.ReadLine());
  11.  
  12. double cakePrice = roomRent * 0.20;
  13. double refreshmentsPrice = cakePrice - 0.45;
  14. double AnimatorPrice = 1 / 3 * roomRent;
  15.  
  16. double neededMoney = roomRent + cakePrice + refreshmentsPrice + AnimatorPrice;
  17.  
  18. Console.WriteLine(neededMoney);
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement