Advertisement
desislava_topuzakova

Untitled

Dec 4th, 2022
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp1
  4. {
  5. internal class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int hall = int.Parse(Console.ReadLine());
  10. int food = hall * 2;
  11. double drinksPrice = food * 0.85;
  12. double other = (food + drinksPrice) / 7;
  13.  
  14.  
  15. double expenses = hall + food + drinksPrice + other;
  16. Console.WriteLine($"{expenses:F2}");
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement