From 1f690d3b4725ccea84bfd1f1e9635641d02637d8 Mon Sep 17 00:00:00 2001 From: ak643du Date: Tue, 5 Mar 2024 10:17:32 +0100 Subject: [PATCH 1/3] Initialization --- program.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 program.c diff --git a/program.c b/program.c new file mode 100644 index 0000000..685a49f --- /dev/null +++ b/program.c @@ -0,0 +1,29 @@ +#include + +#define SIZE 100 + +int main() { + double coefs[SIZE] = {0.0}; + double x = 0.0; + double input = 0.0; + int count = 0; + int length = 0; + double result = 0.0; + + while (count < SIZE && scanf("%lf", &input) == 1) { + coefs[count] = input; + 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; +} \ No newline at end of file From bccfad46ac6aefcad35e678de3abc140fc493482 Mon Sep 17 00:00:00 2001 From: ak643du Date: Tue, 5 Mar 2024 10:22:17 +0100 Subject: [PATCH 2/3] Initialization --- program.c | 1 + 1 file changed, 1 insertion(+) diff --git a/program.c b/program.c index 685a49f..fb2859b 100644 --- a/program.c +++ b/program.c @@ -13,6 +13,7 @@ int main() { while (count < SIZE && scanf("%lf", &input) == 1) { coefs[count] = input; count++; + //hello } x = coefs[0]; From bcabea44b34bf9dbb196078c7b61a5f8572fa287 Mon Sep 17 00:00:00 2001 From: ak643du Date: Tue, 5 Mar 2024 10:25:44 +0100 Subject: [PATCH 3/3] Initialization --- program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program.c b/program.c index fb2859b..35964f9 100644 --- a/program.c +++ b/program.c @@ -10,7 +10,7 @@ int main() { int length = 0; double result = 0.0; - while (count < SIZE && scanf("%lf", &input) == 1) { + while (count < SIZE && scanf("%lf", &input) == 1) { coefs[count] = input; count++; //hello