Advertisement
syah8096

shahrani

Jul 6th, 2020
1,110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Disclaimer: The creator of 'C# Shell (C# Offline Compiler)' is in no way responsible for the code posted by any user.
  2. using System;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Collections.Generic;
  6.  
  7. namespace CSharp_Shell
  8. {
  9.  
  10.     public static class Program
  11.     {
  12.         public static void Main()
  13.         {
  14.            var input = Console
  15.            .ReadLine();
  16.            var queue = new Queue<string>();
  17.            while(true)
  18.            {
  19.             var command = Console.ReadLine();
  20.             if(command == "Paid")
  21.             {
  22.                 for(int i=0;i<queue.Count;i++)
  23.                 {
  24.                     var people= queue.Dequeue();
  25.                     Console.WriteLine(people);
  26.                 }
  27.                
  28.             }
  29.             else if(command == "End")
  30.             {
  31.                 Console.WriteLine($"{queue.Count} people remaining.");
  32.                 return;
  33.             }
  34.             else
  35.             {
  36.                 queue.Enqueue(command);
  37.             }
  38.            }
  39.         }
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement