Compare commits
No commits in common. "3f0c3eeeca070e613d54f6fed196dbfd9872c810" and "46744b9d381e19e4bc0a54338515a3dec3f022b5" have entirely different histories.
3f0c3eeeca
...
46744b9d38
BIN
du2/program
BIN
du2/program
Binary file not shown.
@ -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 pocet;
|
||||||
|
int max=0;
|
||||||
int i=0;
|
int i=0;
|
||||||
while(i<VELKOST_POLA){
|
char pole[50];
|
||||||
scanf("%d",&drinks_counter[i]);
|
memset(pole,0,VELKOST_POLA * sizeof(int));
|
||||||
if(drinks_counter[i]<1){
|
for(i<vysledky; i++){
|
||||||
break;
|
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};
|
printf("\nVýherca je súťažiaci%d ktorý vypil %d pohárov\n", - , max);
|
||||||
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);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user