2020-03-13 17:36:17 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include<ctype.h>
|
|
|
|
#include<math.h>
|
|
|
|
int main()
|
|
|
|
{
|
2020-03-19 12:28:08 +00:00
|
|
|
double x=0;
|
|
|
|
long double value =0;
|
|
|
|
int count =0;
|
|
|
|
long double arr[50]={0};
|
|
|
|
|
|
|
|
|
|
|
|
if(scanf("%lf",&x)!=1){
|
|
|
|
printf("Nepodarilo sa nacitat x\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
long double r =0;
|
|
|
|
while(1){
|
|
|
|
r = scanf("%Lf",&value);
|
|
|
|
if (r==EOF){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(r!=1){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
arr[count]=value;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
value=0;
|
|
|
|
for(int i =0;i<count&&count-1-i>=0;i++){
|
|
|
|
value+=(long double)(arr[i]*pow(x,count-1-i));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(value>=40000&&value<=1000000){
|
|
|
|
value =((int)(value*100 - 0.5)/100.00);
|
|
|
|
}
|
|
|
|
printf("Vysledok je :%.2Lf\n",value);
|
2020-03-13 17:36:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
2020-03-13 17:30:16 +00:00
|
|
|
}
|