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; double result = 0.0;
while (count < SIZE && scanf("%lf", &input) == 1) { while (count < SIZE && scanf("%lf", &input) == 1) {
if (input == x) { // if (input == x) {
return 0; // return 0;
} // }
coefs[count] = input; coefs[count] = input;
count++; count++;
} }
@ -22,10 +22,8 @@ int main() {
length = count; 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); printf("Vysledok je: %.2lf\n", result);