pvjc24/cv3/program.c
2024-03-05 11:28:14 +01:00

34 lines
635 B
C

#include <stdio.h>
#define SIZE 100
int main() {
double coefs[SIZE] = {0.0};
double x = 0.0;
char input;
int count = 0;
int length = 0;
double result = 0.0;
while (count < SIZE && scanf("%c", &input) == 1) {
if (input == 'x') {
printf("\n x input \n");
break;
}
else {
coefs[count] = input - '0'; // Convert character to double
count++;
}
}
x = coefs[0];
length = count;
for (int i = 1; i < length; i ++){
result = result * x + coefs[i];
}
printf("Vysledok je: %.2lf\n", result);
return 0;
}