From 38d1dec73e928550081a65433e833f318d492a99 Mon Sep 17 00:00:00 2001 From: Marat Izmailov Date: Thu, 24 Oct 2024 12:14:43 +0000 Subject: [PATCH] Update a1/program.c --- a1/program.c | 1 + 1 file changed, 1 insertion(+) diff --git a/a1/program.c b/a1/program.c index 6282f97..e20aa89 100644 --- a/a1/program.c +++ b/a1/program.c @@ -60,6 +60,7 @@ int main() { indexStack[++indexTop] = i; // Сохраняем индекс открывающей скобки } else if (c == ')' || c == '}' || c == ']' || c == '>') { if (top == -1) { + // Закрывающая скобка без соответствующей открывающей printf("Unexpected closing bracket %c in %d\n", c, i); return 1; // Возвращаем 1 при ошибке }