i need to display the player with the lowest and highest min of play and lowest and highest bonus..i already do the coding but it doesn't display the output that i want..after entering all the player's profile, i need to display the player with the lowest and highest min of play and lowest and highest bonus but the problem with my code is, it display after i enter the first player's profile.
#include <iostream>
using namespace std;
int main()
{
string name[3];
string position[3];
int age[3];
int weight[3];
int height[3];
string nationality[3];
int min[3];
int goal[3];
int bonus[3];
int total;
int highMin, lowMin, highBonus, lowBonus;