Initialization
This commit is contained in:
parent
a0ccc0b00a
commit
d7de3a0eb3
@ -10,27 +10,26 @@ int main() {
|
|||||||
int length = 0;
|
int length = 0;
|
||||||
double result = 0.0;
|
double result = 0.0;
|
||||||
|
|
||||||
if (scanf("%lf", &x) != 1) {
|
while (count < SIZE) {
|
||||||
printf("Nepodarilo sa nacitat zaklad x\n");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
count++;
|
|
||||||
|
|
||||||
while (count < SIZE) {
|
|
||||||
if (scanf("%lf", &input) != 1) {
|
if (scanf("%lf", &input) != 1) {
|
||||||
if (scanf("%c", &input) == 1) {
|
if (scanf("%c", &input) == 1) {
|
||||||
|
if (count == 0){
|
||||||
|
printf("Nepodarilo sa nacitat zaklad x\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count);
|
printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
coefs[count] = input;
|
coefs[count] = input;
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
length = count-1;
|
x = coefs[0];
|
||||||
|
length = count;
|
||||||
|
|
||||||
for (int i = 1; i < length; i ++){
|
for (int i = 1; i < length; i ++){
|
||||||
result = result * x + coefs[i];
|
result = result * x + coefs[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user