IGRODELOFF

Task19

Mar 22nd, 2022 (edited)
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.83 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Task19
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int depth = 0;
  14.             int depthMax = 0;
  15.             int userInputLenght;
  16.  
  17.             string expressionCorrect = "Выражение корректно";
  18.             string expressionIncorrect = "Выражение некорректно";
  19.             string informationDepthMAx = "Максимальная глубина выражения равна: ";
  20.             string userInput;
  21.  
  22.             char openParenthesis= '(';
  23.             char closingParenthesis = ')';
  24.  
  25.             Console.Write("Введите выражение: ");
  26.             userInput = Console.ReadLine();
  27.             userInputLenght = userInput.Length;
  28.  
  29.             for (int i = 0; i < userInputLenght; i++)
  30.             {
  31.                 if (userInput[i] == openParenthesis)
  32.                 {
  33.                     depth++;
  34.                     if (depth > depthMax)
  35.                     {
  36.                         depthMax = depth;
  37.                     }
  38.                 }
  39.                 else if (userInput[i] == closingParenthesis)
  40.                 {
  41.                     depth--;
  42.                     if (depth < 0)
  43.                     {
  44.                         break;
  45.                     }
  46.                 }
  47.             }
  48.             if (depth < 0)
  49.             {
  50.                 Console.WriteLine(expressionIncorrect);
  51.             }
  52.             else if (depth > 0)
  53.             {
  54.                 Console.WriteLine(expressionIncorrect);
  55.             }
  56.             else
  57.             {
  58.                 Console.WriteLine(expressionCorrect + "\n" + informationDepthMAx + depthMax);
  59.             }
  60.         }
  61.     }
  62. }
  63.  
Add Comment
Please, Sign In to add comment