Spocoman

Cat Shirt

Nov 23rd, 2021 (edited)
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.15 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CatShirt
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             double sleeveSize = double.Parse(Console.ReadLine());
  10.             double frontSize = double.Parse(Console.ReadLine());
  11.             string fabricTypes = Console.ReadLine();
  12.             string tieOrNot = Console.ReadLine();
  13.  
  14.             double sum = (sleeveSize * 2 + frontSize * 2) * 1.1 / 100;
  15.            
  16.             if (fabricTypes == "Linen")
  17.             {
  18.                 sum *= 15;
  19.             }
  20.             else if (fabricTypes == "Cotton")
  21.             {
  22.                 sum *= 12;
  23.             }
  24.             else if (fabricTypes == "Denim")
  25.             {
  26.                 sum *= 20;
  27.             }
  28.             else if (fabricTypes == "Twill")
  29.             {
  30.                 sum *= 16;
  31.             }
  32.             else if (fabricTypes == "Flannel")
  33.             {
  34.                 sum *= 11;
  35.             }
  36.             sum += 10;
  37.  
  38.             if (tieOrNot == "Yes")
  39.             {
  40.                 sum *= 1.2;
  41.             }
  42.            
  43.             Console.WriteLine($"The price of the shirt is: {sum:f2}lv.");
  44.         }
  45.     }
  46. }
  47.  
Add Comment
Please, Sign In to add comment