pvjc24/cv3/program.c
2024-03-05 10:51:11 +01:00

38 lines
707 B
C

#include <stdio.h>
#define SIZE 100
int main() {
double coefs[SIZE] = {0.0};
double x = 0.0;
double input = 0.0;
int count = 0;
int length = 0;
double result = 0.0;
while (count < SIZE) {
coefs[count] = input;
if (scanf("%lf", &input) != 1 && (scanf("%c", &input) != 1 || input != 'x')) {
printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count + 1);
break;
}
if (input == 'x') {
break;
}
count++;
}
x = coefs[0];
length = count;
for (int i = 1; i < length; i ++){
result = result * x + coefs[i];
}
printf("Vysledok je: %.2lf\n", result);
return 0;
}