Compare commits

..

No commits in common. "3f0c3eeeca070e613d54f6fed196dbfd9872c810" and "46744b9d381e19e4bc0a54338515a3dec3f022b5" have entirely different histories.

2 changed files with 11 additions and 20 deletions

Binary file not shown.

View File

@ -2,28 +2,19 @@
#include <stdlib.h>
#define VELKOST_POLA 52
struct Winner{
int drinks,position;
};
int main(){
int drinks_counter[VELKOST_POLA];
int vysledky[VELKOST_POLA];
int pocet;
int max=0;
int i=0;
while(i<VELKOST_POLA){
scanf("%d",&drinks_counter[i]);
if(drinks_counter[i]<1){
break;
char pole[50];
memset(pole,0,VELKOST_POLA * sizeof(int));
for(i<vysledky; i++){
if (pole[i] > max){
max = pole[i];
}
i++;
printf("\nSúťažiaci č.%d vypil %d pohárov.\n", i , pole[i]);
}
struct Winner max={0,0};
for(int j=0;j<i;j++){
printf("Súťažiaci č.%d vypil %d pohárov.\n",j+1,drinks_counter[j]);
if(drinks_counter[j]>max.drinks){
max.drinks=drinks_counter[j];
max.position=j+1;
}
}
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",max.position,max.drinks);
printf("\nVýherca je súťažiaci%d ktorý vypil %d pohárov\n", - , max);
return 0;
}