Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
 header file for function describe_grade
   created by smtuttle at Tue Oct 19 21:42:06 PDT 2010
--------------------------------------------------*/
#ifndef describe_grade_H
#define describe_grade_H

#include <string>
using namespace std;

const string A_DESCR = "Excellent";
const string B_DESCR = "Very Good";
const string C_DESCR = "Acceptable";
const string D_DESCR = "Marginal";
const string F_DESCR = "Insufficient";
const string OTHER_DESCR = "Unrecognized Grade";

string describe_grade(char letter_grade);

#endif