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