pvjc24/cv3/ program.c

26 lines
383 B
C
Raw Normal View History

2024-03-06 14:11:26 +00:00
#include <stdio.h>
int main() {
float x;
float coefficient;
float result = 0;
int exponent = 0;
if (scanf("%f", &x) != 1) {
printf("Chyba\n");
return 1;
}
while (scanf("%f", &coefficient) == 1) {
result += coefficient * pow(x, exponent);
exponent++;
}
printf("Vysledok je: %.2f\n", result);
return 0;
}