Aktualizovat „a1/program.c“

This commit is contained in:
Bohdan Yanchyk 2020-03-13 17:36:17 +00:00
parent a09e2f68c5
commit 30ccb3261e

View File

@ -20,8 +20,8 @@ int main()
count++;
}
value=0;
for(int i =0;i<count;i++){
value+=arr[count]*pow(x,count-i);
for(int i =0;i<count-1;i++){
value+=arr[count]*pow(x,count-2-i);
}
printf("Vysledok je :%f\n",value);