test
This commit is contained in:
parent
6d6c76eb61
commit
75494da36c
@ -93,12 +93,12 @@ int main() {
|
||||
|
||||
if (sscanf(vstup, "%f", &hodnota) == 1) {
|
||||
vloz(&kalkulacka, hodnota);
|
||||
printf("%.2f\n", hodnota); // Vypíšeme platné číslo
|
||||
printf("%.2f\n", hodnota);
|
||||
}
|
||||
else if (sscanf(vstup, "%c", &operacia) == 1) {
|
||||
if (!je_platna_operacia(operacia)) {
|
||||
printf("bad input\n");
|
||||
continue; // Preskočí ďalšie iterácie cyklu
|
||||
continue;
|
||||
}
|
||||
switch (operacia) {
|
||||
case '+':
|
||||
@ -143,6 +143,7 @@ int main() {
|
||||
}
|
||||
} else {
|
||||
printf("bad input\n");
|
||||
continue; // Zabezpečíme, aby sa cyklus opakoval
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user