Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace SeaTrip
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- double foodPrice = double.Parse(Console.ReadLine()) * 3;
- double souvenirPrice = double.Parse(Console.ReadLine()) * 3;
- double dayHotelPrice = double.Parse(Console.ReadLine());
- double hotelPrice = dayHotelPrice * 0.90 + dayHotelPrice * 0.85 + dayHotelPrice * 0.80;
- double transportPrice = 210.0 * 2 / 100 * 7 * 1.85;
- Console.WriteLine($"Money needed: {foodPrice + souvenirPrice + hotelPrice + transportPrice:f2}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement