Initialization

This commit is contained in:
Kozar 2024-03-05 11:09:13 +01:00
parent 32c42e2558
commit 3313bef9a4

View File

@ -11,9 +11,9 @@ int main() {
double result = 0.0;
while (count < SIZE && scanf("%lf", &input) == 1) {
if (input == x) {
return 0;
}
// if (input == x) {
// return 0;
// }
coefs[count] = input;
count++;
}
@ -22,13 +22,11 @@ int main() {
length = count;
result = coefs[0];
for (int i = 1; i < length; i ++) {
result = result * x + coefs[i];
for (int i = 1; i < length; i ++){
result = result * x + coefs[i];
}
printf("Vysledok je: %.2lf\n", result);
return 0;
}
}