Advertisement
VodVas

Скобки

Aug 20th, 2023 (edited)
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.49 KB | Software | 0 0
  1. namespace Скобки
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             Console.Write("Введите скобочное выражение: ");
  8.             string text = Console.ReadLine();
  9.  
  10.             char openParenthesis = '(';
  11.             char closeParenthesis = ')';
  12.  
  13.             int maxDepth = 0;
  14.             int currentDepth = 0;
  15.  
  16.             foreach (var symbol in text)
  17.             {
  18.                 if (symbol == openParenthesis)
  19.                 {
  20.                     currentDepth++;
  21.  
  22.                     if (currentDepth > maxDepth)
  23.                     {
  24.                         maxDepth = currentDepth;
  25.                     }
  26.                 }
  27.                 else if (symbol == closeParenthesis)
  28.                 {
  29.                     if (currentDepth > 0)
  30.                     {
  31.                         currentDepth--;
  32.                     }
  33.                     else
  34.                     {
  35.                         Console.WriteLine("Выражение некорректно");
  36.                         return;
  37.                     }
  38.                 }
  39.             }
  40.  
  41.             if (currentDepth != 0)
  42.             {
  43.                 Console.WriteLine("Скобочное выражение некорректно");
  44.             }
  45.             else
  46.             {
  47.                 Console.WriteLine("Скобочное выражение корректно, макс глубина: " + maxDepth);
  48.             }
  49.         }
  50.     }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement