IvetValcheva

05. Birthday party

Apr 4th, 2021
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FirstStepsInCodding
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. //вход- наем - double - rent
  10. double rent = double.Parse(Console.ReadLine());
  11.  
  12. //cake – 20% от наема на залата - -doble -> rent * 20/100;
  13. //drinks – 45 % по - малко от cake - double -> cake - cake*45/100
  14. //animator – 1 / 3 от наема на залата - double -> rent/3;
  15. double cake = rent * 20 / 100;
  16. double drinks = cake - cake * 45 / 100;
  17. double animator = rent / 3;
  18.  
  19. //изход: sum от rent+cake+drinks+animator
  20. double sum = rent + cake + drinks + animator;
  21. Console.WriteLine(sum);
  22. }
  23. }
  24. }
Add Comment
Please, Sign In to add comment