Compare commits
2 Commits
46744b9d38
...
3f0c3eeeca
Author | SHA1 | Date | |
---|---|---|---|
|
3f0c3eeeca | ||
|
c98475792c |
BIN
du2/program
Executable file
BIN
du2/program
Executable file
Binary file not shown.
@ -2,19 +2,28 @@
|
||||
#include <stdlib.h>
|
||||
#define VELKOST_POLA 52
|
||||
|
||||
struct Winner{
|
||||
int drinks,position;
|
||||
};
|
||||
|
||||
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]);
|
||||
int drinks_counter[VELKOST_POLA];
|
||||
int i=0;
|
||||
while(i<VELKOST_POLA){
|
||||
scanf("%d",&drinks_counter[i]);
|
||||
if(drinks_counter[i]<1){
|
||||
break;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
printf("\nVýherca je súťažiaci%d ktorý vypil %d pohárov\n", - , max);
|
||||
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);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user