pvjc24/cv3/program.c
2024-03-04 14:40:37 +01:00

32 lines
462 B
C

#include <stdio.h>
#define SIZE 10
int main() {
int coefs[SIZE];
int x = 0;
int input = 0;
int count = 0;
int length = 0;
double result = 0.0;
while (count < SIZE && scanf("%d", &input) == 1) {
coefs[count] = input;
count++;
}
x = coefs[0];
length = count;
for (int i = 1; i < length; i ++){
result = result * x + coefs[i];
}
printf("Výsledok je: %.2lf\n", result);
return 0;
}