pvjc20/a1/program.c

37 lines
683 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()
{
2020-03-19 13:42:41 +00:00
int i,c;
2020-03-17 13:44:47 +00:00
double x;
long double result=0;
2020-03-19 13:43:16 +00:00
int n=scanf("%lF",&x);
2020-03-19 13:41:58 +00:00
if(n!=1){
printf("Nepodarilo sa nacitat x\n");
return 0;
2020-03-19 13:29:32 +00:00
}
2020-03-17 13:44:47 +00:00
long double *array;
array = (long double*) malloc(10000);
for(i=0,c=1;i<c;i++,c++){
int b = scanf("%Lf",&array[i]);
2020-03-19 13:45:30 +00:00
if(b==EOF || b!=1){
2020-03-17 13:44:47 +00:00
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 19:09:00 +00:00
if(result>40000 && result!=(long long )(result)){
2020-03-19 12:44:51 +00:00
result-=0.01;
2020-03-19 12:34:26 +00:00
}
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;
}