From 1537b6cea32d0edaf5bc9b5380a809557332b1b4 Mon Sep 17 00:00:00 2001 From: Pavlo Tverdyi Date: Tue, 17 Mar 2020 16:04:31 +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 | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/a1/program.c b/a1/program.c index 033a9bb..f5c2b62 100644 --- a/a1/program.c +++ b/a1/program.c @@ -20,14 +20,7 @@ int main() result+=(long double)(array[j]*pow(x,i-1)); } if(result!=(int)(result)){ - if(result<0){ - result=(int)(result*100-0.5); - result=(long double)(result/100); - } - else{ - result=(int)(result*100+0.5); - result=(long double)((result)/100); - } + result=(int)((result*100+0.5)/100); } printf("Vysledok je :%.2Lf\n",result); free(array);