program.c

This commit is contained in:
Patrik Seman 2023-03-02 16:04:33 +01:00
parent 5218651d42
commit c717e08199

View File

@ -2,20 +2,24 @@
#include <stdlib.h>
#define VELKOST_POLA 52
int main(){
int i;
int i=0;
int pole[VELKOST_POLA];
int max=0;
int max_hodnota=0;
int value=0;
while(i<VELKOST_POLA){
printf('Zadaj hodnotu: ');
int r = scanf("%d",&value);
pole[i]=r;
if(r==1){
printf("Súťažiaci č. %d vypil %d pohárov.", i,poli[i]);
i++;
}
else{
break;
}
if(pole[i] > max_hodnota){
max_hodnota = pole[i];
}
}
return 0;