test
This commit is contained in:
parent
d36a8b16d8
commit
c614a32f8c
@ -72,6 +72,10 @@ void zobraz_zasobnik(KalkulackaZasobnik *kalkulacka) {
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
bool je_platna_operacia(char operacia) {
|
||||
return operacia == '+' || operacia == '-' || operacia == '*' || operacia == '/';
|
||||
}
|
||||
|
||||
int main() {
|
||||
KalkulackaZasobnik kalkulacka;
|
||||
inicializuj(&kalkulacka);
|
||||
@ -92,6 +96,10 @@ int main() {
|
||||
zobraz_zasobnik(&kalkulacka);
|
||||
}
|
||||
if (sscanf(vstup + snprintf(NULL, 0, "%.2f", hodnota), " %c", &operacia) == 1) {
|
||||
if (!je_platna_operacia(operacia)) {
|
||||
printf("bad input\n");
|
||||
return 0;
|
||||
}
|
||||
switch (operacia) {
|
||||
case '+':
|
||||
if (scitat(&kalkulacka)) {
|
||||
@ -127,15 +135,9 @@ int main() {
|
||||
vloz(&kalkulacka, b / a);
|
||||
zobraz_zasobnik(&kalkulacka);
|
||||
}
|
||||
} else {
|
||||
printf("no input\n");
|
||||
return 0;
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
printf("no input\n");
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user