funguje
This commit is contained in:
parent
46744b9d38
commit
c98475792c
@ -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(drink_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,drinks_counter[j]);
|
||||
if(drinks_counter[j]>max.drinks){
|
||||
max.drinks=drinks_counter[j];
|
||||
max.position=j;
|
||||
}
|
||||
}
|
||||
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