Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program
- {
- static void Main(string[] args)
- {
- int maxDepth = 0;
- int depth = 0;
- int startDepth = 0;
- string userText;
- char symbolForDown = '(';
- char symbolForUp = ')';
- Console.WriteLine("Введите скобочное выражениее");
- userText = Console.ReadLine();
- for (int i = 0; i < userText.Length; i++)
- {
- if (userText[i] == symbolForDown)
- {
- depth++;
- if (depth > maxDepth)
- maxDepth = depth;
- }
- else if (userText[i] == symbolForUp)
- {
- depth--;
- if (depth < startDepth)
- {
- Console.WriteLine("Строка некорректная");
- return;
- }
- }
- else
- {
- Console.WriteLine("Строка некорректная");
- }
- }
- if (depth == startDepth)
- {
- Console.WriteLine($"Строка корректная и максимум глубины равняется: {maxDepth}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement