Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace Скобки
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Введите скобочное выражение: ");
- string text = Console.ReadLine();
- char openParenthesis = '(';
- char closeParenthesis = ')';
- int maxDepth = 0;
- int currentDepth = 0;
- foreach (var symbol in text)
- {
- if (symbol == openParenthesis)
- {
- currentDepth++;
- if (currentDepth > maxDepth)
- {
- maxDepth = currentDepth;
- }
- }
- else if (symbol == closeParenthesis)
- {
- if (currentDepth > 0)
- {
- currentDepth--;
- }
- else
- {
- Console.WriteLine("Выражение некорректно");
- return;
- }
- }
- }
- if (currentDepth != 0)
- {
- Console.WriteLine("Скобочное выражение некорректно");
- }
- else
- {
- Console.WriteLine("Скобочное выражение корректно, макс глубина: " + maxDepth);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement