Advertisement
Spocoman

Cruise Ship

Oct 7th, 2023
729
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.87 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CruiseShip
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string destination = Console.ReadLine();
  10.             string cabinType = Console.ReadLine();
  11.             int overnights = int.Parse(Console.ReadLine());
  12.  
  13.             double dayPrice = 0;
  14.  
  15.             if (destination == "Mediterranean")
  16.             {
  17.                 if (cabinType == "standard cabin")
  18.                 {
  19.                     dayPrice = 27.50;
  20.                 }
  21.                 else if (cabinType == "cabin with balcony")
  22.                 {
  23.                     dayPrice = 30.20;
  24.                 }
  25.                 else
  26.                 {
  27.                     dayPrice = 40.50;
  28.                 }
  29.             }
  30.             else if (destination == "Adriatic")
  31.             {
  32.                 if (cabinType == "standard cabin")
  33.                 {
  34.                     dayPrice = 22.99;
  35.                 }
  36.                 else if (cabinType == "cabin with balcony")
  37.                 {
  38.                     dayPrice = 25.00;
  39.                 }
  40.                 else
  41.                 {
  42.                     dayPrice = 34.99;
  43.                 }
  44.             }
  45.             else
  46.             {
  47.                 if (cabinType == "standard cabin")
  48.                 {
  49.                     dayPrice = 23.00;
  50.                 }
  51.                 else if (cabinType == "cabin with balcony")
  52.                 {
  53.                     dayPrice = 26.60;
  54.                 }
  55.                 else
  56.                 {
  57.                     dayPrice = 39.80;
  58.                 }
  59.             }
  60.  
  61.             double totalSum = dayPrice * 4 * overnights;
  62.             if (overnights > 7)
  63.             {
  64.                 totalSum *= 0.75;
  65.             }
  66.             Console.WriteLine($"Annie's holiday in the {destination} sea costs {totalSum:f2} lv.");
  67.         }
  68.     }
  69. }
  70.  
  71. РЕШЕНИЕ С ТЕРНАРЕН ОПЕРАТОР:
  72.  
  73. using System;
  74.  
  75. namespace CruiseShip
  76. {
  77.     class Program
  78.     {
  79.         static void Main(string[] args)
  80.         {
  81.             string destination = Console.ReadLine();
  82.             string cabinType = Console.ReadLine();
  83.             int overnights = int.Parse(Console.ReadLine());
  84.  
  85.             double dayPrice =
  86.                 destination == "Mediterranean" ?
  87.                 (cabinType == "standard cabin" ? 27.50 : cabinType == "cabin with balcony" ? 30.20 : 40.50) :
  88.                destination == "Adriatic" ?
  89.                (cabinType == "standard cabin" ? 22.99 : cabinType == "cabin with balcony" ? 25.00 : 34.99) :
  90.                (cabinType == "standard cabin" ? 23.00 : cabinType == "cabin with balcony" ? 26.60 : 39.80);
  91.  
  92.             double totalSum = dayPrice * 4 * overnights * (overnights > 7 ? 0.75 : 1);
  93.            
  94.             Console.WriteLine($"Annie's holiday in the {destination} sea costs {totalSum:f2} lv.");
  95.         }
  96.     }
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement