Initialization

This commit is contained in:
Kozar 2024-03-07 14:20:52 +01:00
parent 0ab2d2e3be
commit 53206c8a63

View File

@ -10,14 +10,14 @@ int main() {
int length = 0;
double result = 0.0;
while (count < SIZE) {
if (scanf("%lf", &x) != 1) {
printf("Nepodarilo sa nacitat zaklad x\n");
return 0;
}
while (count < SIZE) {
if (scanf("%lf", &input) != 1) {
if (scanf("%c", &input) == 1) {
if (count == 0){
printf("Nepodarilo sa nacitat zaklad x\n");
return 0;
}
printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count);
return 0;
}
@ -28,7 +28,6 @@ int main() {
count++;
}
x = coefs[0];
length = count;
for (int i = 1; i < length; i ++){