Update 'du2/program.c'
This commit is contained in:
parent
ad5e194b1d
commit
df6caf8480
@ -7,14 +7,16 @@ int main(){
|
|||||||
int pocet;
|
int pocet;
|
||||||
int max=0;
|
int max=0;
|
||||||
int i=0;
|
int i=0;
|
||||||
|
int c=0;
|
||||||
char pole[];
|
char pole[];
|
||||||
memset(pole,0,VELKOST_POLA * sizeof(int));
|
memset(pole,0,VELKOST_POLA * sizeof(int));
|
||||||
for(){
|
for(){
|
||||||
if (pole[i] > max){
|
if (pole[i] > max){
|
||||||
max = pole[i];
|
max = pole[i];
|
||||||
|
c=i;
|
||||||
}
|
}
|
||||||
printf("Súťažiaci č.", 1 ,"vypil", 1 ,"pohárov.")
|
printf("Súťažiaci č.", i ,"vypil", pole[i] ,"pohárov.")
|
||||||
}
|
}
|
||||||
printf("Výherca je súťažiaci", 5 ,"ktorý vypil", 5 ,"pohárov.")
|
printf("Výherca je súťažiaci", c ,"ktorý vypil", max ,"pohárov.")
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user