From eaf702872d4a3531028e9e0cadd3095a34809d12 Mon Sep 17 00:00:00 2001 From: Pavlo Tverdyi Date: Tue, 17 Mar 2020 13:44:47 +0000 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20'a1/program.c'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- a1/program.c | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/a1/program.c b/a1/program.c index 56a6051..d2da0bd 100644 --- a/a1/program.c +++ b/a1/program.c @@ -1 +1,32 @@ -1 \ No newline at end of file +#include +#include +#include + +int main() +{ + int i,c; + double x; + long double result=0; + scanf("%lF",&x); + long double *array; + array = (long double*) malloc(10000); + for(i=0,c=1;i0; i--,j++){ + result+=(long double)(array[j]*pow(x,i-1)); + } +// if(result>=10000&&result<1000000000000){ +// result=((int)(result*100-0.5)/100); +// } + printf("%.2Lf",result); + free(array); + return 0; +} + + + +