pvjc23/du2/program.c

30 lines
616 B
C
Raw Normal View History

2023-03-02 14:33:37 +00:00
#include <stdio.h>
2023-03-02 14:49:49 +00:00
#include <stdlib.h>
2023-03-02 14:33:37 +00:00
#define VELKOST_POLA 52
int main(){
2023-03-02 15:04:33 +00:00
int i=0;
2023-03-02 14:33:37 +00:00
int pole[VELKOST_POLA];
2023-03-02 15:04:33 +00:00
int max_hodnota=0;
2023-03-04 11:13:35 +00:00
int max_hrac=0;
2023-03-04 10:37:00 +00:00
int r=0;
2023-03-04 11:13:35 +00:00
while(i<VELKOST_POLA){
scanf("%d",&r);
pole[i]=r;
2023-03-04 11:24:12 +00:00
if(r!=-1){
2023-03-04 11:13:35 +00:00
i++;
printf("Súťažiaci č. %d vypil %d pohárov.\n", i,r);
2023-03-02 15:07:51 +00:00
2023-03-04 11:13:35 +00:00
}
else{
break;
}
if(pole[i] > max_hodnota){
max_hodnota = pole[i];
max_hrac= i;
}
2023-03-02 15:04:33 +00:00
2023-03-02 14:33:37 +00:00
2023-03-04 11:13:35 +00:00
}
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",max_hrac,max_hodnota);
return 0;
2023-03-04 10:37:00 +00:00
}