Advertisement
vencinachev

A2

Dec 2nd, 2020
755
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace GerryTutor
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string text = Console.ReadLine();
  14.             Stack<char> stack = new Stack<char>();
  15.             foreach (char ch in text)
  16.             {
  17.                 stack.Push(ch);
  18.             }
  19.             while (stack.Count != 0)
  20.             {
  21.                 Console.Write(stack.Pop());
  22.             }
  23.  
  24.         }
  25.     }
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement