Please send questions to st10@humboldt.edu .

// Header file for function: describe_grade2
// Name: Sharon Tuttle
// last modified: 4-27-07

#ifndef DESCRIBE_GRADE2_H
#define DESCRIBE_GRADE2_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_grade2 (char grade);

#endif