pvjc22/du2/program.c

22 lines
473 B
C

#include <stdio.h>
#include <stdlib.h>5
#define VELKOST_POLA 52
int main(){
int vysledky[VELKOST_POLA];
int pocet;
int max=0;
int i=0;
int c=0;
char pole[100];
memset(pole,0,VELKOST_POLA * sizeof(int));
for(i<vysledky; i++){
if (pole[i] > max){
max = pole[i];
c=i;
}
printf("\nSúťažiaci č.%d vypil %d pohárov.\n", i , pole[i]);
}
printf("\nVýherca je súťažiaci%d ktorý vypil %d pohárov\n", c , max);
return 0;
}