.
This commit is contained in:
parent
c60645b219
commit
03997807d5
@ -1,6 +1,9 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#define VELKOST_POLA 52
|
#define VELKOST_POLA 52
|
||||||
|
|
||||||
int main(){
|
int main(){
|
||||||
int i=0;
|
int i=0;
|
||||||
int pole[VELKOST_POLA];
|
int pole[VELKOST_POLA];
|
||||||
@ -8,7 +11,7 @@ int main(){
|
|||||||
int max_hodnota=0;
|
int max_hodnota=0;
|
||||||
int max_hrac = 0;
|
int max_hrac = 0;
|
||||||
int value=0;
|
int value=0;
|
||||||
int r=0;
|
|
||||||
while(i<VELKOST_POLA){
|
while(i<VELKOST_POLA){
|
||||||
value=0;
|
value=0;
|
||||||
int r = scanf("%d",&value);
|
int r = scanf("%d",&value);
|
||||||
@ -25,8 +28,8 @@ while(i<VELKOST_POLA){
|
|||||||
max_hodnota = pole[i];
|
max_hodnota = pole[i];
|
||||||
max_hrac = i;
|
max_hrac = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", max_hrac,max_hodnota);
|
|
||||||
|
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", max_hrac+1,max_hodnota);
|
||||||
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user