funguje
This commit is contained in:
parent
46744b9d38
commit
c98475792c
@ -2,19 +2,28 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#define VELKOST_POLA 52
|
#define VELKOST_POLA 52
|
||||||
|
|
||||||
|
struct Winner{
|
||||||
|
int drinks,position;
|
||||||
|
};
|
||||||
|
|
||||||
int main(){
|
int main(){
|
||||||
int vysledky[VELKOST_POLA];
|
int drinks_counter[VELKOST_POLA];
|
||||||
int pocet;
|
int i=0;
|
||||||
int max=0;
|
while(i<VELKOST_POLA){
|
||||||
int i=0;
|
scanf("%d",drinks_counter[i]);
|
||||||
char pole[50];
|
if(drink_counter[i]<1){
|
||||||
memset(pole,0,VELKOST_POLA * sizeof(int));
|
break;
|
||||||
for(i<vysledky; i++){
|
}
|
||||||
if (pole[i] > max){
|
i++;
|
||||||
max = pole[i];
|
|
||||||
}
|
|
||||||
printf("\nSúťažiaci č.%d vypil %d pohárov.\n", i , pole[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;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user