Advertisement
SaNik74

Brackets expressions

Feb 19th, 2023 (edited)
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.48 KB | None | 0 0
  1. using System;
  2.  
  3. internal class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         int currentDepth = 0;
  8.         int nestingDepth = 0;
  9.         char openBrecket = '(';
  10.         char closeBrecket = ')';
  11.         string? brecketsString;
  12.         Console.Write($"Введите символы {openBrecket} и {closeBrecket}");
  13.         brecketsString = Console.ReadLine();
  14.  
  15.         foreach (var symbol in brecketsString)
  16.         {
  17.             if (symbol == openBrecket)
  18.             {
  19.                 ++currentDepth;
  20.  
  21.                 if (nestingDepth < currentDepth)
  22.                 {
  23.                     ++nestingDepth;
  24.                 }
  25.             }
  26.             else if (symbol == closeBrecket)
  27.             {
  28.                 --currentDepth;
  29.             }
  30.  
  31.             if (currentDepth < 0)
  32.             {
  33.                 Console.WriteLine("Некорректное скобочное выражение" +
  34.                     "\nДля выхода, нажмите любую клавишу...");
  35.                 Console.ReadKey();
  36.                 break;
  37.             }
  38.         }
  39.  
  40.         if (currentDepth == 0)
  41.         {
  42.             Console.WriteLine($"Скобочное выражение является корректным." +
  43.                 $"\nМаксимальная глубина вложенности = {nestingDepth}" +
  44.                 $"\nДля выхода, нажмите любую клавишу...");
  45.             Console.ReadKey();
  46.         }
  47.     }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement