Spocoman

World Snooker Championship

Nov 24th, 2021 (edited)
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.33 KB | None | 0 0
  1. using System;
  2.  
  3. namespace WorldSnookerChampionship
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             string stageOfTheChampionship = Console.ReadLine();
  10.             string typesOfTickets = Console.ReadLine();
  11.             int ticketCount = int.Parse(Console.ReadLine());
  12.             string selfieWithTheTrophy = Console.ReadLine();
  13.             double ticketPrice = 0;
  14.  
  15.             if (stageOfTheChampionship == "Quarter final")
  16.             {
  17.                 if (typesOfTickets == "Standard")
  18.                 {
  19.                     ticketPrice = 55.50;
  20.                 }
  21.                 else if (typesOfTickets == "Premium")
  22.                 {
  23.                     ticketPrice = 105.20;
  24.                 }
  25.                 else if(typesOfTickets == "VIP")
  26.                 {
  27.                     ticketPrice = 118.90;
  28.                 }
  29.             }
  30.             else if (stageOfTheChampionship == "Semi final")
  31.             {
  32.                 if (typesOfTickets == "Standard")
  33.                 {
  34.                     ticketPrice = 75.88;
  35.                 }
  36.                 else if (typesOfTickets == "Premium")
  37.                 {
  38.                     ticketPrice = 125.22;
  39.                 }
  40.                 else if (typesOfTickets == "VIP")
  41.                 {
  42.                     ticketPrice = 300.40;
  43.                 }
  44.             }
  45.             else if (stageOfTheChampionship == "Final")
  46.             {
  47.                 if (typesOfTickets == "Standard")
  48.                 {
  49.                     ticketPrice = 110.10;
  50.                 }
  51.                 else if (typesOfTickets == "Premium")
  52.                 {
  53.                     ticketPrice = 160.66;
  54.                 }
  55.                 else if (typesOfTickets == "VIP")
  56.                 {
  57.                     ticketPrice = 400;
  58.                 }
  59.             }
  60.             double totalPrice = ticketPrice * ticketCount;
  61.  
  62.             if (totalPrice > 4000)
  63.             {
  64.                 totalPrice *= 0.75;
  65.                 selfieWithTheTrophy = "N";
  66.             }
  67.             else if (totalPrice > 2500)
  68.             {
  69.                 totalPrice *= 0.9;
  70.             }
  71.  
  72.             if (selfieWithTheTrophy == "Y")
  73.             {
  74.                 totalPrice += ticketCount * 40;
  75.             }
  76.  
  77.             Console.WriteLine($"{totalPrice:f2}");
  78.         }
  79.     }
  80. }
Add Comment
Please, Sign In to add comment