This is the sort of program where a structure or class comes in handy -- makes sorting the data a whole lot simpler.
struct bowler
{
string name;
int score;
};
>>However, I want to change it where the "int score" is, so that the user can input the scores manually
use cin inside a loop to do that
for(int i = 0; i < 3; i++)
cin score[i];