Advertisement
Guest User

FruitShop

a guest
Jul 4th, 2016
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 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. string fruit = Console.ReadLine();
  14. string day = Console.ReadLine();
  15. var quantity = double.Parse(Console.ReadLine());
  16. var price = 0.0;
  17.  
  18. if (day == "saturday" || day == "sunday")
  19. {
  20. if (fruit == "banana") price = 2.70;
  21. else if (fruit == "apple") price = 1.25;
  22. else if (fruit == "orange") price = 0.90;
  23. else if (fruit == "grapefruit") price = 1.60;
  24. else if (fruit == "kiwi") price = 3.00;
  25. else if (fruit == "pineapple") price = 5.60;
  26. else if (fruit == "grapes") price = 4.20;
  27. Console.WriteLine("{0:f2}", price * quantity);
  28.  
  29. }
  30.  
  31. else if (day == "monday" || day == "tuesday" || day == "wednesday" || day == "thursday" || day == "friday")
  32. {
  33. if (fruit == "banana") price = 2.50;
  34. else if (fruit == "apple") price = 1.20;
  35. else if (fruit == "orange") price = 0.85;
  36. else if (fruit == "grapefruit") price = 1.45;
  37. else if (fruit == "kiwi") price = 2.70;
  38. else if (fruit == "pineapple") price = 5.50;
  39. else if (fruit == "grapes") price = 3.85;
  40. Console.WriteLine("{0:f2}",+ (price * quantity));
  41. }
  42.  
  43. else
  44. {
  45. Console.WriteLine("error");
  46.  
  47. }
  48.  
  49. Console.ReadLine();
  50.  
  51. }
  52. }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement