pvjc20/a1/program.c

35 lines
649 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 12:20:37 +00:00
if((int)(result)!=0){
2020-03-19 09:23:52 +00:00
result=(int)(result*100-0.5);
result=(long double)(result/100);
2020-03-19 12:17:23 +00:00
printf(" %Lf ",result);
}
2020-03-19 12:09:41 +00:00
printf("Vysledok je :%.2Lf\n",result);
2020-03-17 13:44:47 +00:00
free(array);
return 0;
}