Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- public class Program
- {
- public static void Main()
- {
- var money = double.Parse(Console.ReadLine());
- var season = Console.ReadLine();
- if ( season == "summer" && money <= 100)
- {
- double budget = 0.3* money;
- Console.WriteLine("Somewhere in Bulgaria");
- Console.WriteLine("Camp" + "-" + "{0:f2}", budget);
- }
- else if ( season == "summer" && money <= 1000 && money > 100)
- {
- double budget = 0.4* money;
- Console.WriteLine("Somewhere in Balkans");
- Console.WriteLine("Camp" + "-" + "{0:f2}", budget);
- }
- else if ( money >= 1000 && season == "summer" )
- {
- double budget = 0.9* money;
- Console.WriteLine("Somewhere in Europe");
- Console.WriteLine("Hotel" + "-" + "{0:f2}", budget);
- }
- else if ( money >= 1000 && season == "winter" )
- {
- double budget = 0.9* money;
- Console.WriteLine("Somewhere in Europe");
- Console.WriteLine("Hotel" + "-" + "{0:f2}", budget);
- }
- else if ( season == "winter" && money <= 100)
- {
- double budget = 0.7* money;
- Console.WriteLine("Somewhere in Bulgaria");
- Console.WriteLine("Hotel" + "-" + "{0:f2}", budget);
- }
- else if ( season == "winter" && money <= 1000 && money > 100)
- {
- double budget = 0.8* money;
- Console.WriteLine("Somewhere in Balkans");
- Console.WriteLine("Hotel" + "-" + "{0:f2}", budget);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment