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 при ошибке }