This commit is contained in:
Kozar 2024-02-28 13:49:54 +01:00
parent bd08c000f2
commit a9eb7f112e

View File

@ -22,7 +22,37 @@ int main(){
for (int i = 0; i < count; i++) {
printf("Sutaziaci č. %d vypil %d pohárov.\n", i + 1, field[i]);
}
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",i+1,field[i]);
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",i+1,field[i]);#include<stdio.h>
#define FIELD_SIZE 52
int main(){
int field[FIELD_SIZE] = {0};
int count = 0;
int max_num = 0;
int input;
int winner_index = 0;
while (count < FIELD_SIZE) {
if (scanf("%d", &input) != 1) {
break;
}
if (input < 0) {
break;
}
field[count] = input;
count++;
}
for (int i = 0; i < count; i++) {
printf("Súťažiaci č. %d vypil %d pohárov.\n", i + 1, field[i]);
if (field[i] > max_num) {
max_num = field[i];
winner_index = i;
}
}
printf("Výherca je súťažiaci %d, ktorý vypil %d pohárov.\n", winner_index + 1, max_num);
return 0;
}