Initialization

This commit is contained in:
Kozar 2024-03-08 01:19:19 +01:00
parent da83f98e46
commit bdfbea9a90

View File

@ -12,6 +12,7 @@ int main() {
while (count < SIZE) { while (count < SIZE) {
if (scanf("%lf", &input) != 1) { if (scanf("%lf", &input) != 1) {
if (scanf("%c", &input) == 1) {
if (count == 0){ if (count == 0){
printf("Nepodarilo sa nacitat zaklad x\n"); printf("Nepodarilo sa nacitat zaklad x\n");
return 0; return 0;
@ -20,9 +21,11 @@ int main() {
printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count); printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count);
return 0; return 0;
} }
break;
}
coefs[count] = input; coefs[count] = input;
count++; count++;
} }
x = coefs[0]; x = coefs[0];