pvjc20/a1/program.c

30 lines
578 B
C
Raw Normal View History

2020-03-13 17:36:17 +00:00
#include <stdio.h>
#include<ctype.h>
#include<math.h>
int main()
{
2020-03-15 17:35:40 +00:00
double x=0;
2020-03-15 17:44:41 +00:00
long double value =0;
2020-03-13 17:36:17 +00:00
int count =0;
2020-03-15 17:41:21 +00:00
double arr[50]={0};
2020-03-15 17:35:40 +00:00
scanf("%lf",&x);
2020-03-15 17:38:58 +00:00
while(scanf("%lf",&value)!=EOF){
2020-03-13 17:36:17 +00:00
if(isalpha(value)!=0){
return 0;
}
2020-03-15 17:22:58 +00:00
arr[count]=value;
2020-03-13 17:36:17 +00:00
count++;
}
value=0;
2020-03-15 17:41:21 +00:00
for(int i =0;i<count&&count-1-i>=0;i++){
2020-03-15 17:24:04 +00:00
value+=arr[i]*pow(x,count-1-i);
2020-03-15 17:22:58 +00:00
}
2020-03-15 17:43:39 +00:00
if(value>=40000&&value<=1000000){
value =((int)(value*100 - 0.5)/100.00);
}
2020-03-15 17:44:41 +00: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
}