Please send questions to
st10@humboldt.edu .
// Header file for function: describe_grade
// Name: Sharon Tuttle
// last modified: 4-27-07
#ifndef DESCRIBE_GRADE_H
#define DESCRIBE_GRADE_H
// have this because of string constants below
#include <iostream>
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";
void describe_grade (char grade);
#endif