Advertisement
Spocoman

07. Food Delivery

Nov 14th, 2021 (edited)
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.77 KB | None | 0 0
  1. Добра практика:
  2. using System;
  3.  
  4. namespace FoodDelivery
  5. {
  6.     class Program
  7.     {
  8.         static void Main()
  9.         {
  10.             double chickenMenuPrice = 10.35;
  11.             double fishMenuPrice = 12.40;
  12.             double vegeterianMenuPrice = 8.15;
  13.             double delivery = 2.50;
  14.  
  15.             int chickenMenuCount = int.Parse(Console.ReadLine());
  16.             int fishMenuCount = int.Parse(Console.ReadLine());
  17.             int vegetarianMenuCount = int.Parse(Console.ReadLine());
  18.  
  19.             double menuPrice = chickenMenuCount * chickenMenuPrice + fishMenuCount * fishMenuPrice + vegetarianMenuCount * vegeterianMenuPrice;
  20.             double dessertPrice = menuPrice / 5;
  21.             double totalPrice = menuPrice + dessertPrice + delivery;
  22.  
  23.             Console.WriteLine(totalPrice);
  24.         }
  25.     }
  26. }
  27.  
  28. Или леко тарикатската:
  29. using System;
  30.  
  31. namespace FoodDelivery
  32. {
  33.     class Program
  34.     {
  35.         static void Main()
  36.         {
  37.             double chickenMenuPrice = int.Parse(Console.ReadLine()) * 10.35;
  38.             double fishMenuPrice = int.Parse(Console.ReadLine()) * 12.40;
  39.             double vegetarianMenuPrice = int.Parse(Console.ReadLine()) * 8.15;
  40.             double delivery = 2.50;
  41.  
  42.             double menuPrice = chickenMenuPrice + fishMenuPrice + vegetarianMenuPrice;
  43.             double totalPrice = menuPrice * 1.2 + delivery;
  44.  
  45.             Console.WriteLine(totalPrice);
  46.         }
  47.     }
  48. }
  49.  
  50. Лоша практика:
  51.  
  52. using System;
  53.  
  54. namespace FoodDelivery
  55. {
  56.     class Program
  57.     {
  58.         static void Main()
  59.         {
  60.             Console.WriteLine((int.Parse(Console.ReadLine()) * 10.35 + int.Parse(Console.ReadLine()) * 12.40 + int.Parse(Console.ReadLine()) * 8.15) * 1.2 + 2.5);
  61.         }
  62.     }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement