From 314c336dedd57022cdaba850715d80bdf86f114a Mon Sep 17 00:00:00 2001 From: Bohdan Yanchyk Date: Sun, 15 Mar 2020 17:30:33 +0000 Subject: [PATCH] =?UTF-8?q?Aktualizovat=20=E2=80=9Ea1/program.c=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- a1/program.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/a1/program.c b/a1/program.c index 55b03df..c2878fa 100644 --- a/a1/program.c +++ b/a1/program.c @@ -4,11 +4,11 @@ int main() { float x=0; - float value =0; + double value =0; int count =0; - float arr[50]; + double arr[50]; scanf("%f",&x); - while(scanf("%f",&value)!=EOF){ + while(scanf("%lf",&value)!=EOF){ if(isalpha(value)!=0){ return 0; } @@ -20,10 +20,10 @@ int main() value+=arr[i]*pow(x,count-1-i); } - if(value>=40000){ - value =((int)(value*100 - 0.5)/100.00); - } - printf("Vysledok je :%.2f\n",value); + //if(value>=40000){ + // value =((int)(value*100 - 0.5)/100.00); + // } + printf("Vysledok je :%.2lf\n",value); return 0;