Initialization
This commit is contained in:
parent
2ba582a802
commit
9686ff02d0
@ -10,28 +10,19 @@ int main() {
|
|||||||
int length = 0;
|
int length = 0;
|
||||||
double result = 0.0;
|
double result = 0.0;
|
||||||
|
|
||||||
while (count < SIZE) {
|
while (count < SIZE) {
|
||||||
|
|
||||||
if (scanf("%lf", &input) != 1) {
|
if (scanf("%lf", &input) != 1) {
|
||||||
char c;
|
if (count == 0){
|
||||||
if (scanf("%c", &c) == 1) {
|
printf("Nepodarilo sa nacitat zaklad x\n");
|
||||||
if (c == '\n') {
|
|
||||||
printf("Newline character detected!\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (count == 0){
|
|
||||||
printf("Nepodarilo sa nacitat zaklad x\n");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
break;
|
printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
coefs[count] = input;
|
coefs[count] = input;
|
||||||
count++;
|
count++;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
x = coefs[0];
|
x = coefs[0];
|
||||||
|
Loading…
Reference in New Issue
Block a user