Advertisement
NinaSmith

Untitled

Feb 8th, 2017
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.77 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Fruit_Shop
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             var fruit = Console.ReadLine().ToLower();
  14.             var day = Console.ReadLine().ToLower();
  15.             var quantity = double.Parse(Console.ReadLine());
  16.             var price = -1.0;
  17.  
  18.             if (day=="saturday" || day=="sunday")
  19.             {
  20.                 if (fruit == "banana") price = 2.70;
  21.                 else if (fruit == "apple") price = 1.25; //else if (fruit == "apple") price = 1.20;
  22.                 else if (fruit == "orange") price = 0.90;
  23.                 else if (fruit == "grapefruit") price = 1.60; //else if (fruit == "grapefruit") price = 1.45;
  24.  
  25.                 else if (fruit == "kiwi") price = 3.00;
  26.                 else if (fruit == "pineapple") price = 5.60;
  27.                 else if (fruit == "grapes") price = 4.20; //   else if (fruit == "grapes") price = 3.85;
  28.              }
  29.             else if (day=="monday" || day=="tuesday" || day=="wednesday" || day=="thursday" || day=="friday")
  30.             {
  31.                 if (fruit == "banana") price = 2.50;
  32.                 else if (fruit == "apple") price = 1.20;
  33.                 else if (fruit == "orange") price = 0.85;
  34.                 else if (fruit == "grapefruit") price = 1.45;
  35.                 else if (fruit == "kiwi") price = 2.70;
  36.                 else if (fruit == "pineapple") price = 5.50;
  37.                 else if (fruit == "grapes") price = 3.85;
  38.             }
  39.             if (price >= 0) // if (price>= -1.0)
  40.                 Console.WriteLine("{0:f2}" , price * quantity);
  41.             else
  42.                 Console.WriteLine("error");
  43.          }
  44.      }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement