Advertisement
NikaBang

Скобочное выражение

Oct 12th, 2024
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.09 KB | None | 0 0
  1. using System;
  2.  
  3. internal class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         char openParenthesis = '(';
  8.         char closedParenthesis = ')';
  9.  
  10.         int count = 0;
  11.         int maxCount = 0;
  12.  
  13.         Console.Write($"Введите строку из скобок '{openParenthesis}' и '{closedParenthesis}' - ");
  14.  
  15.         string userInput = Console.ReadLine();
  16.  
  17.         foreach (char parenthesis in userInput)
  18.         {
  19.             if (parenthesis == openParenthesis)
  20.             {
  21.                 count++;
  22.  
  23.                 if (count > maxCount)
  24.                     maxCount = count;
  25.             }
  26.             else
  27.             {
  28.                 count--;
  29.  
  30.                 if (count < 0)
  31.                     break;
  32.             }
  33.  
  34.         }
  35.  
  36.         if (count == 0)
  37.         {
  38.             Console.WriteLine($"строка корректная и максимум глубины равняется {maxCount}");
  39.         }
  40.         else
  41.         {
  42.             Console.WriteLine("Некоректная строка.");
  43.         }
  44.  
  45.         Console.ReadKey();
  46.     }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement