cv3
This commit is contained in:
parent
cef61faf0c
commit
f9711b5aee
@ -14,6 +14,7 @@ int main() {
|
|||||||
char line[MAX_LINE_LENGTH];
|
char line[MAX_LINE_LENGTH];
|
||||||
double result = 0;
|
double result = 0;
|
||||||
double x;
|
double x;
|
||||||
|
int lineNumber = 1;
|
||||||
|
|
||||||
if (fgets(line, MAX_LINE_LENGTH, stdin) == NULL || !IsValidNumber(line)) {
|
if (fgets(line, MAX_LINE_LENGTH, stdin) == NULL || !IsValidNumber(line)) {
|
||||||
printf("Nepodarilo sa nacitat zaklad x\n");
|
printf("Nepodarilo sa nacitat zaklad x\n");
|
||||||
@ -25,10 +26,11 @@ int main() {
|
|||||||
while (fgets(line, MAX_LINE_LENGTH, stdin) != NULL && IsValidNumber(line)) {
|
while (fgets(line, MAX_LINE_LENGTH, stdin) != NULL && IsValidNumber(line)) {
|
||||||
double coefficient = strtod(line, NULL);
|
double coefficient = strtod(line, NULL);
|
||||||
result = result * x + coefficient;
|
result = result * x + coefficient;
|
||||||
|
lineNumber++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (line[0] != '\n') {
|
if (line[0] != '\n') {
|
||||||
printf("Nepodarilo sa nacitat koeficient polynomu\n");
|
printf("Nepodarilo sa nacitat polynom na %d mieste\n", lineNumber);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user