I have an array of numbers and i have to find lowest and highest and drop them. When i display the numbers on my output screen it has to display HIGH for highest and LOW for lowest instead of the actual numbers. this is an int array so clearly i cant store a string there.Help would be appreciated.
this is how im trying to display
Final = Total(all numbers together) - Low(lowest #) - High(Highest #);
cout << "judge 1: " << Numbers[0];
cout << "judge 2: " << Numbers[1];
cout << "judge 3: " << Numbers[2];
cout << "judge 4: " << Numbers[3];
cout << "judge 5: " << Numbers[4];
cout << "Total: " << Final;
please help