Update cv3/program.c
This commit is contained in:
parent
b8cffbedb6
commit
d50c831796
@ -92,7 +92,7 @@ int main() {
|
|||||||
char *end;
|
char *end;
|
||||||
double value = strtod(input, &end);
|
double value = strtod(input, &end);
|
||||||
|
|
||||||
if (end != input && *end == '\n') {
|
if (end != input && (*end == '\n' || *end == ' ')) {
|
||||||
// Це дійсне число
|
// Це дійсне число
|
||||||
if (!push(&calc, value)) {
|
if (!push(&calc, value)) {
|
||||||
return 1; // Стек переповнений
|
return 1; // Стек переповнений
|
||||||
|
Loading…
Reference in New Issue
Block a user