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