Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace FruitShop
- {
- class Program
- {
- static void Main(string[] args)
- {
- var fruit = Console.ReadLine();
- var day = Console.ReadLine();
- var quantity = double.Parse(Console.ReadLine());
- var price = -1.0;
- if (day == "Monday" || day == "Tuesday" || day == "Wednesday" || day == "Thursday" || day == "Friday")
- {
- if (fruit == "banana")
- {
- price = 2.50;
- }
- else if (fruit == "apple")
- {
- price = 1.20;
- }
- else if (fruit == "orange")
- {
- price = 0.85;
- }
- else if (fruit == "grapefruit")
- {
- price = 1.45;
- }
- else if (fruit == "kiwi")
- {
- price = 2.70;
- }
- else if (fruit == "pineapple")
- {
- price = 5.50;
- }
- else if (fruit == "grapes")
- {
- price = 3.85;
- }
- }
- else if (day == "Saturday" || day == "Sunday")
- {
- if (fruit == "banana")
- {
- price = 2.70;
- }
- else if (fruit == "apple")
- {
- price = 1.25;
- }
- else if (fruit == "orange")
- {
- price = 0.90;
- }
- else if (fruit == "grapefruit")
- {
- price = 1.60;
- }
- else if (fruit == "kiwi")
- {
- price = 3.00;
- }
- else if (fruit == "pineapple")
- {
- price = 5.60;
- }
- else if (fruit == "grapes")
- {
- price = 4.20;
- }
- }
- if (price >= 0)
- {
- Console.WriteLine("{0:f2}", price * quantity);
- }
- else
- {
- Console.WriteLine("error");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment