This commit is contained in:
Weber 2024-03-06 14:24:33 +00:00
parent 12d2e76858
commit bf051430c9

View File

@ -14,11 +14,11 @@ int main() {
repetitions++; repetitions++;
} else { } else {
printf("Nepodarilo sa nacitat zaklad x\n"); printf("Nepodarilo sa nacitat zaklad x\n");
return 1; return 0;
} }
} else { } else {
printf("Nepodarilo sa nacitat x\n"); printf("Nepodarilo sa nacitat x\n");
return 1; return 0;
} }
// tu sa halda koeficient // tu sa halda koeficient
@ -32,7 +32,7 @@ int main() {
repetitions++; repetitions++;
} else { } else {
printf("Nepodarilo sa nacitat polynom na %d mieste.\n", repetitions); printf("Nepodarilo sa nacitat polynom na %d mieste.\n", repetitions);
return 1; return 0;
} }
} else { } else {
break; break;