Update a1/program.c
This commit is contained in:
parent
e118e96953
commit
38d1dec73e
@ -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 при ошибке
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user