Update cv3/program.c

This commit is contained in:
Viktor Daniv 2024-10-14 12:27:22 +00:00
parent b8cffbedb6
commit d50c831796

View File

@ -92,7 +92,7 @@ int main() {
char *end;
double value = strtod(input, &end);
if (end != input && *end == '\n') {
if (end != input && (*end == '\n' || *end == ' ')) {
// Це дійсне число
if (!push(&calc, value)) {
return 1; // Стек переповнений