Update 'du2/program.c'

This commit is contained in:
Peter Sabol 2022-03-09 08:39:43 +00:00
parent df6caf8480
commit aaa9164c0c

View File

@ -1,5 +1,5 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>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<vysledky; i++){
if (pole[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;
}