39 lines
707 B
C
39 lines
707 B
C
#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));
|
|
}
|
|
if(result!=(int)(result)){
|
|
if(result<0){
|
|
result=(int)(result*100-0.5);
|
|
result=(long double)(result/100);
|
|
}
|
|
else{
|
|
result=(result+0.005);
|
|
}
|
|
}
|
|
printf("Vysledok je :%.2Lf\n",result);
|
|
free(array);
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|