Advertisement
Spocoman

Mobile operator

Nov 25th, 2021
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.17 KB | None | 0 0
  1. using System;
  2.  
  3. namespace MobileOperator
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string year = Console.ReadLine();
  10.             string type = Console.ReadLine();
  11.             string net = Console.ReadLine();
  12.             int month = int.Parse(Console.ReadLine());
  13.  
  14.             double sum = 0;
  15.            
  16.             switch (type)
  17.             {
  18.                 case "Small":
  19.                     if (year == "one")
  20.                     {
  21.                         sum += 9.98;
  22.                     }
  23.                     else
  24.                     {
  25.                         sum += 8.58;
  26.                     }
  27.                     break;
  28.                 case "Middle":
  29.                     if (year == "one")
  30.                     {
  31.                         sum += 18.99;
  32.                     }
  33.                     else
  34.                     {
  35.                         sum += 17.09;
  36.                     }
  37.                     break;
  38.                 case "Large":
  39.                     if (year == "one")
  40.                     {
  41.                         sum += 25.98;
  42.                     }
  43.                     else
  44.                     {
  45.                         sum += 23.59;
  46.                     }
  47.                     break;
  48.                 case "ExtraLarge":
  49.                     if (year == "one")
  50.                     {
  51.                         sum += 35.99;
  52.                     }
  53.                     else
  54.                     {
  55.                         sum += 31.79;
  56.                     }
  57.                     break;
  58.             }
  59.  
  60.            
  61.             if (net == "yes")
  62.             {
  63.                 if (sum <= 10)
  64.                 {
  65.                     sum += 5.5;
  66.                 }
  67.                 else if (sum > 10 && sum <= 30)
  68.                 {
  69.                     sum += 4.35;
  70.                 }
  71.                 else
  72.                 {
  73.                     sum += 3.85;
  74.                 }
  75.             }
  76.  
  77.             double total = sum * month;
  78.  
  79.             if (year == "two")
  80.             {
  81.                 total -= 3.75 * total / 100;
  82.             }
  83.  
  84.             Console.WriteLine($"{total:F2} lv.");
  85.         }
  86.     }
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement