From aaa9164c0cbfe52243683d2797418817df2e8add Mon Sep 17 00:00:00 2001 From: Peter Sabol Date: Wed, 9 Mar 2022 08:39:43 +0000 Subject: [PATCH] Update 'du2/program.c' --- du2/program.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/du2/program.c b/du2/program.c index 0d326c2..0d46973 100644 --- a/du2/program.c +++ b/du2/program.c @@ -1,5 +1,5 @@ #include -#include +#include 5 #define VELKOST_POLA 52 int main(){ @@ -8,15 +8,15 @@ int main(){ int max=0; int i=0; int c=0; - char pole[]; + char pole[100]; memset(pole,0,VELKOST_POLA * sizeof(int)); - for(){ + for(i max){ max = pole[i]; c=i; } - printf("Súťažiaci č.", i ,"vypil", pole[i] ,"pohárov.") + printf("\nSúťažiaci č.%d vypil %d pohárov.\n", i , pole[i]); } - printf("Výherca je súťažiaci", c ,"ktorý vypil", max ,"pohárov.") + printf("\nVýherca je súťažiaci%d ktorý vypil %d pohárov\n", c , max); return 0; } \ No newline at end of file