Initialization
This commit is contained in:
parent
32c42e2558
commit
3313bef9a4
@ -11,9 +11,9 @@ int main() {
|
||||
double result = 0.0;
|
||||
|
||||
while (count < SIZE && scanf("%lf", &input) == 1) {
|
||||
if (input == x) {
|
||||
return 0;
|
||||
}
|
||||
// if (input == x) {
|
||||
// return 0;
|
||||
// }
|
||||
coefs[count] = input;
|
||||
count++;
|
||||
}
|
||||
@ -22,13 +22,11 @@ int main() {
|
||||
|
||||
length = count;
|
||||
|
||||
result = coefs[0];
|
||||
|
||||
for (int i = 1; i < length; i ++) {
|
||||
result = result * x + coefs[i];
|
||||
for (int i = 1; i < length; i ++){
|
||||
result = result * x + coefs[i];
|
||||
}
|
||||
|
||||
printf("Vysledok je: %.2lf\n", result);
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user