pvjc24/cv3/program.c

46 lines
936 B
C
Raw Normal View History

2024-02-27 09:04:02 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#define MAX_LINE_LENGTH 256
bool IsValidNumber(const char *line) {
char *endFtr;
strtod(line, &endFtr);
2024-02-28 14:46:06 +00:00
return endFtr != line;
2024-02-27 09:04:02 +00:00
}
int main() {
char line[MAX_LINE_LENGTH];
2024-02-28 14:53:40 +00:00
double result = 0;
2024-02-28 14:58:29 +00:00
int exponent = 2;
2024-02-28 14:51:46 +00:00
2024-02-27 09:04:02 +00:00
if (fgets(line, MAX_LINE_LENGTH, stdin) == NULL || !IsValidNumber(line)) {
printf("Nepodarilo sa nacitat zaklad x\n");
return 1;
}
2024-02-28 14:53:40 +00:00
double x = strtod(line, NULL);
2024-02-28 14:58:29 +00:00
result += 1;
2024-02-28 14:53:40 +00:00
2024-02-27 09:04:02 +00:00
while (1) {
if (fgets(line, MAX_LINE_LENGTH, stdin) == NULL || !IsValidNumber(line)) {
2024-02-28 14:46:06 +00:00
if (line[0] == '\n') {
break;
}
2024-02-28 14:53:40 +00:00
printf("Nepodarilo sa nacitat polynom\n");
2024-02-27 09:04:02 +00:00
return 1;
}
2024-02-28 14:53:40 +00:00
x = strtod(line, NULL);
2024-02-28 14:58:29 +00:00
result = result * x + 1;
2024-02-27 09:04:02 +00:00
2024-02-28 14:58:29 +00:00
exponent--;
2024-02-27 09:04:02 +00:00
}
2024-02-27 09:13:05 +00:00
printf("Vysledok je: %.2f\n", result);
2024-02-27 09:04:02 +00:00
return 0;
}
2024-02-28 14:51:46 +00:00