pvjc22/du2/program.c

20 lines
449 B
C

#include <stdio.h>
#include <stdlib.h>
#define VELKOST_POLA 52
int main(){
int vysledky[VELKOST_POLA];
int pocet;
int max=0;
int i=0;
char pole[50];
memset(pole,0,VELKOST_POLA * sizeof(int));
for(i<vysledky; i++){
if (pole[i] > max){
max = pole[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", - , max);
return 0;
}