///////////////////////////////////////////////////////////////////////////////
// Namespaces used....
///////////////////////////////////////////////////////////////////////////////
using namespace std;
///////////////////////////////////////////////////////////////////////////////
// Type Definitions...
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// Function prototypes...
///////////////////////////////////////////////////////////////////////////////
int inputScore();
// prompt the user for the score and return it
int letter_grade();
string computeScore(int the_score);
void outputgrade(int score, string letter_grade);
// output the score and the corresponding percentage
///////////////////////////////////////////////////////////////////////////////
//
// FUNCTION NAME: main
// PARAMETERS: None
// RETURN TYPE: int
// PURPOSE: Entry point for the application.
//
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//
// FUNCTION NAME: outputResults
// PARAMETERS: int score
// string letter_grade
// RETURN TYPE: void
// PURPOSE: Output the score and the corresponding percentage.
//
///////////////////////////////////////////////////////////////////////////////
void outputgrade(int the_score, string letter_grade)
{
// output the score and the letter grade with a descriptive message...
cout <<"The score you entered is "<< the_score << endl;
cout <<" Which results in a letter grade of "<< letter_grade << endl;
}