Initialization
This commit is contained in:
parent
da83f98e46
commit
bdfbea9a90
@ -10,19 +10,22 @@ int main() {
|
||||
int length = 0;
|
||||
double result = 0.0;
|
||||
|
||||
while (count < SIZE) {
|
||||
while (count < SIZE) {
|
||||
if (scanf("%lf", &input) != 1) {
|
||||
if (count == 0){
|
||||
printf("Nepodarilo sa nacitat zaklad x\n");
|
||||
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);
|
||||
return 0;
|
||||
}
|
||||
|
||||
printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count);
|
||||
return 0;
|
||||
break;
|
||||
}
|
||||
|
||||
coefs[count] = input;
|
||||
count++;
|
||||
|
||||
}
|
||||
|
||||
x = coefs[0];
|
||||
|
Loading…
Reference in New Issue
Block a user