Update a1/program.c
This commit is contained in:
parent
04a4286f02
commit
f14b836421
@ -46,7 +46,7 @@ int main() {
|
|||||||
// Если стек пустой, это ошибка
|
// Если стек пустой, это ошибка
|
||||||
if (top == -1) {
|
if (top == -1) {
|
||||||
printf("Read: %s\n", input);
|
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;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,14 +64,14 @@ int main() {
|
|||||||
// Если остались открытые скобки в стеке, это ошибка
|
// Если остались открытые скобки в стеке, это ошибка
|
||||||
if (top != -1) {
|
if (top != -1) {
|
||||||
printf("Read: %s\n", input);
|
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;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Если не найдены скобки, выводим сообщение
|
// Если не найдены скобки, выводим сообщение
|
||||||
if (!foundBracket) {
|
if (!foundBracket) {
|
||||||
printf("Read: %s\n", input);
|
printf("Read: %s\n", input);
|
||||||
printf("All brackets OK\n"); // Изменено здесь
|
printf("All brackets OK\n");
|
||||||
} else {
|
} else {
|
||||||
// Ожидаемый корректный вывод
|
// Ожидаемый корректный вывод
|
||||||
printf("Read: %s\n", input);
|
printf("Read: %s\n", input);
|
||||||
|
Loading…
Reference in New Issue
Block a user