Initialization
This commit is contained in:
parent
2347edd3ac
commit
abf36e5838
@ -12,13 +12,10 @@ int main() {
|
|||||||
double result = 0.0;
|
double result = 0.0;
|
||||||
|
|
||||||
while (count < SIZE) {
|
while (count < SIZE) {
|
||||||
if (getchar() == '\n') {
|
if (scanf("%lf", &input) != 1 && input == '\n') {
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (scanf("%lf", &input) != 1) {
|
|
||||||
printf(":(");
|
printf(":(");
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
coefs[count] = input;
|
coefs[count] = input;
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user