Update a1/program.c

This commit is contained in:
Marat Izmailov 2024-10-24 12:49:24 +00:00
parent 04a4286f02
commit f14b836421

View File

@ -46,7 +46,7 @@ int main() {
// Если стек пустой, это ошибка
if (top == -1) {
printf("Read: %s\n", input);
printf("Neočekávaný znak %c na %d, očakávaná otváracia zátvorka.\n", current, position);
printf("Unexpected closing bracket %c in %d\n", current, position);
return 1;
}
@ -64,14 +64,14 @@ int main() {
// Если остались открытые скобки в стеке, это ошибка
if (top != -1) {
printf("Read: %s\n", input);
printf("Neočekávaný koniec vstupu, očakávaná zatváracia zátvorka pre %c.\n", stack[top]);
printf("Unexpected end of input, expected closing bracket for %c.\n", stack[top]);
return 1;
}
// Если не найдены скобки, выводим сообщение
if (!foundBracket) {
printf("Read: %s\n", input);
printf("All brackets OK\n"); // Изменено здесь
printf("All brackets OK\n");
} else {
// Ожидаемый корректный вывод
printf("Read: %s\n", input);