diff --git a/a1/program.c b/a1/program.c index 278dc72..7d3ff6e 100644 --- a/a1/program.c +++ b/a1/program.c @@ -13,16 +13,17 @@ int main() printf("Nepodarilo sa nacitat x\n"); return 0; } - while(scanf("%Lf",&value)!=EOF){ - + int r =0; + while((r=scanf("%Lf",&value)!=EOF)&&r==1){ arr[count]=value; count++; } value=0; - for(int i =0;i=0;i++){ - value+=(long double)(arr[i]*pow(x,count-1-i)); + if(r==1){ + for(int i =0;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); }