Initialization

This commit is contained in:
Kozar 2024-03-05 10:52:25 +01:00
parent 6fe00d4b47
commit dd67962395

View File

@ -13,14 +13,6 @@ int main() {
while (count < SIZE) {
coefs[count] = input;
if (scanf("%lf", &input) != 1 && (scanf("%c", &input) != 1 || input != 'x')) {
printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count + 1);
break;
}
if (input == 'x') {
break;
}
count++;
}