This commit is contained in:
Matus Tokarcik 2024-02-29 18:29:17 +01:00
parent 5c95fb1b98
commit 2a7fc3017b
2 changed files with 56 additions and 0 deletions

56
cv2/program.c Normal file
View File

@ -0,0 +1,56 @@
#include <stdio.h>
int main(){
int results[50];
int count = 0;
int max = 0;
printf("Zadajte výsledky súťažiacich s medzerami(max. 50): \n" );
while (count < 50 && scanf ("%d", &results[count]) == 1){
if (results[count] == EOF){
break;
}
if (results[count] < 1){
printf("neplatna hodnota. \n");
return 1;
}
count++;
if (count == 0){
printf ("chyba\n");
return 1;
}
}
int index = 0;
int vyhercovia[50];
int vyherca = 0 ;
for ( int i = 0; i < count; i++){
printf("Súťažiaci č. %d vypil %d pohárov.\n",i+1,results[i]);
}
for (int i = 0; i < count; i++){
if (results[i] > max ) {
max = results[i];
}
}
for (int i = 0; i < count; i++){
if (results[i] == max ) {
vyherca++;
vyhercovia[index] = i+1;
index++;
}
}
for (int i = 0; i < vyherca; i++){
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",vyhercovia[i],max);
}
return 0;
}

BIN
cv2/program.exe Normal file

Binary file not shown.