Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Excursion
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int people = int.Parse(Console.ReadLine());
- int nights = int.Parse(Console.ReadLine());
- int cards = int.Parse(Console.ReadLine());
- int tickets = int.Parse(Console.ReadLine());
- double total = people * (nights * 20 + cards * 1.60 + tickets * 6) * 1.25;
- Console.WriteLine($"{total:f2}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement