Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Homework33
- {
- class Program
- {
- static void Main()
- {
- Queue<int> purchases = new Queue<int>();
- int storesCashAccount = 0;
- purchases.Enqueue(50);
- purchases.Enqueue(100);
- purchases.Enqueue(500);
- purchases.Enqueue(300);
- while (purchases.Count != 0)
- {
- Console.WriteLine($"Баланс магазина: {storesCashAccount}.\n");
- Console.WriteLine("Сумма покупки текущего клиента: " + purchases.Peek());
- storesCashAccount += purchases.Dequeue();
- Console.WriteLine("\nНажмите любую клавишу для обслуживания следующего клиента...");
- Console.ReadKey();
- Console.Clear();
- }
- Console.Write($"\nБаланс магазина: {storesCashAccount}.\n\nВсе клиенты из очереди были обслужены...");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement