Advertisement
silvana1303

oscars ceremony

Apr 29th, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. using System;
  2.  
  3. namespace exampreparation
  4.  
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. int rent = int.Parse(Console.ReadLine());
  11.  
  12. double statuettes = rent * 0.70;
  13. double catering = statuettes * 0.85;
  14. double sounding = catering * 0.5;
  15.  
  16. double fullSum = rent + statuettes + catering + sounding;
  17.  
  18. Console.WriteLine($"{fullSum:f2}");
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement