prvy
This commit is contained in:
parent
bcd1368dbf
commit
6eb525c34d
@ -21,11 +21,11 @@ int main() {
|
||||
while (fgets(line, LINESIZE, stdin)) {
|
||||
velkost = strlen(line);
|
||||
if (velkost == 1 && line[velkost - 1] == '\n') {
|
||||
printf("no input\n");
|
||||
|
||||
break;
|
||||
}
|
||||
if (input >= 10){
|
||||
printf("no input\n");
|
||||
|
||||
break;
|
||||
}
|
||||
if (line[0] == '+' || line[0] == '-' || line[0] == '*' || line[0] == '/') {
|
||||
@ -43,10 +43,15 @@ int main() {
|
||||
a--;
|
||||
}
|
||||
if (line[0] == '/') {
|
||||
if (number[a - 1].cislo == 0){
|
||||
printf("division by zero");
|
||||
}
|
||||
else {
|
||||
number[a - 2].cislo = number[a - 2].cislo / number[a - 1].cislo;
|
||||
a--;
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
p = atof(line);
|
||||
number[a].cislo = p;
|
||||
|
Loading…
Reference in New Issue
Block a user