Advertisement
Guest User

Untitled

a guest
May 17th, 2016
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.89 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _03.MaximumElement
  4. {
  5.     using System.Collections.Generic;
  6.     using System.Linq;
  7.  
  8.     public class MaximumElement
  9.     {
  10.         public static void Main(string[] args)
  11.         {
  12.             int queriesCount = int.Parse(Console.ReadLine());
  13.  
  14.             var elements = new Stack<int>();
  15.  
  16.             for (int i = 0; i < queriesCount; i++)
  17.             {
  18.                 string querie = Console.ReadLine();
  19.                 switch (querie)
  20.                 {
  21.                     case "2":
  22.                         elements.Pop();
  23.                         break;
  24.                     case "3":
  25.                         Console.WriteLine(elements.Max());
  26.                         break;
  27.                     default:
  28.                         elements.Push(int.Parse(querie.Substring(2)));
  29.                         break;
  30.                 }
  31.             }
  32.         }
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement