Advertisement
vovanhik_24

#34

Sep 9th, 2023 (edited)
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.33 KB | None | 0 0
  1.         static void Main(string[] args)
  2.         {
  3.             Queue<int> costProducts = new Queue<int>();
  4.  
  5.             FillQueue(costProducts);
  6.             DrawQueue(costProducts);
  7.         }
  8.  
  9.         private static void DrawQueue(Queue<int> costProducts)
  10.         {
  11.             int balance = 0;
  12.  
  13.             while (costProducts.Count > 0)
  14.             {
  15.                 Console.Clear();
  16.                 Console.WriteLine($"На балансе: {balance}. Нажмите любую клавишу, чтобы обслужить клиента...\n");
  17.                 Console.ReadKey();
  18.  
  19.                 Console.WriteLine("\nДеньги зачислены на счёт!");
  20.                 balance += costProducts.Dequeue();
  21.                 Console.ReadKey();
  22.  
  23.                 Console.Clear();
  24.                 Console.WriteLine($"Клиентов больше нету!\nВыручка составляет: {balance} рублей");
  25.             }
  26.         }
  27.  
  28.         private static void FillQueue(Queue<int> costProducts)
  29.         {
  30.             int countOfBuyers = 10;
  31.             int maxCost = 1000;
  32.             int minCost = 5;
  33.  
  34.             Random random = new Random();
  35.  
  36.             for (int i = 0; i < countOfBuyers; i++)
  37.             {
  38.                 costProducts.Enqueue(random.Next(minCost, maxCost));
  39.             }
  40.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement