schema
This commit is contained in:
parent
68b9678fd6
commit
d478fb09b2
@ -21,6 +21,8 @@ int main() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
double x_base = strtod(line, NULL);
|
||||
|
||||
while (1) {
|
||||
if (fgets(line, MAX_LINE_LENGTH, stdin) == NULL || !IsValidNumber(line)) {
|
||||
if (line[0] == '\n') {
|
||||
@ -31,17 +33,16 @@ int main() {
|
||||
}
|
||||
|
||||
char *endPtr;
|
||||
double x = strtod(line, &endPtr);
|
||||
double coefficient = strtod(line, &endPtr);
|
||||
if (*endPtr != '\n' && *endPtr != '\0') {
|
||||
printf("Nespravny format cisla\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
result = result * x;
|
||||
result = result * x_base + coefficient;
|
||||
coefficientIndex++;
|
||||
}
|
||||
|
||||
printf("Vysledok je: %.2f\n", result);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user