pvjc20/a1/program.c

32 lines
513 B
C
Raw Normal View History

2020-03-17 13:44:47 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{
int i,c;
double x;
long double result=0;
scanf("%lF",&x);
long double *array;
array = (long double*) malloc(10000);
for(i=0,c=1;i<c;i++,c++){
int b = scanf("%Lf",&array[i]);
if(b==EOF){
break;
}
}
for(int j=0 ;i>0; i--,j++){
result+=(long double)(array[j]*pow(x,i-1));
2020-03-17 14:57:16 +00:00
}
2020-03-19 09:14:36 +00:00
2020-03-17 13:44:47 +00:00
}
2020-03-17 13:47:14 +00:00
printf("Vysledok je :%.2Lf\n",result);
2020-03-17 13:44:47 +00:00
free(array);
return 0;
}