2022-03-09 07:57:33 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define VELKOST_POLA 52
|
|
|
|
|
2022-03-09 07:58:54 +00:00
|
|
|
int main(){
|
2022-03-09 08:26:32 +00:00
|
|
|
int vysledky[VELKOST_POLA];
|
|
|
|
int pocet;
|
|
|
|
int max=0;
|
|
|
|
int i=0;
|
2022-03-09 08:27:25 +00:00
|
|
|
char pole[];
|
2022-03-09 08:26:32 +00:00
|
|
|
memset(pole,0,VELKOST_POLA * sizeof(int));
|
|
|
|
for(){
|
|
|
|
if (pole[i] > max){
|
|
|
|
max = pole[i];
|
|
|
|
}
|
|
|
|
printf("Súťažiaci č.", 1 ,"vypil", 1 ,"pohárov.")
|
|
|
|
}
|
|
|
|
printf("Výherca je súťažiaci", 5 ,"ktorý vypil", 5 ,"pohárov.")
|
2022-03-09 07:57:33 +00:00
|
|
|
return 0;
|
2022-03-05 16:27:11 +00:00
|
|
|
}
|