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> #include <stdlib.h>
#define VELKOST_POLA 52 #define VELKOST_POLA 52
struct Winner{
int drinks,position;
};
int main(){ int main(){
int drinks_counter[VELKOST_POLA]; int vysledky[VELKOST_POLA];
int i=0; int pocet;
while(i<VELKOST_POLA){ int max=0;
scanf("%d",&drinks_counter[i]); int i=0;
if(drinks_counter[i]<1){ char pole[50];
break; memset(pole,0,VELKOST_POLA * sizeof(int));
} for(i<vysledky; i++){
i++; if (pole[i] > max){
} max = 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("\nSúťažiaci č.%d vypil %d pohárov.\n", i , pole[i]);
} }
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; return 0;
} }