#include #include #include #include using namespace std; void getHighScore(string& name, string& score) { int highScore = 0; string highScorePlayer; fstream inputStream; inputStream.open("scores.txt"); while (! inputStream.eof()) { inputStream >> name; inputStream >> score; int score_int = atoi(score.c_str()); cout