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