Удалить 'du2/program.c'
This commit is contained in:
parent
1200baf942
commit
4bfa69a729
@ -1,37 +0,0 @@
|
|||||||
#include <stdio.h>
|
|
||||||
#define VELKOST_POLA 52
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int main()
|
|
||||||
{
|
|
||||||
int i=0;
|
|
||||||
int max_hodnota=0;
|
|
||||||
int pole[VELKOST_POLA] = {0,0,0,0};
|
|
||||||
for(;i<=49;i++){
|
|
||||||
int r = scanf("%d",&pole[i]);
|
|
||||||
if(r==EOF){
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if(pole[i] <= 0){
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
printf("Súťažiaci č. %d vypil %d pohárov.\n",i+1,pole[i]);
|
|
||||||
if (pole[i] > max_hodnota){
|
|
||||||
max_hodnota = pole[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
if(pole[0]<=0){
|
|
||||||
printf("Chyba: Málo platných hodnôt.\n");
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
for(int j=0;j<=i;j++){
|
|
||||||
if(pole[j]==max_hodnota){
|
|
||||||
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",j+1,pole[j]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user