Please send questions to
st10@humboldt.edu .
/*
Contract: main: void -> int
Purpose: testing program for the function describe_grade2
Example: when the user runs the program test_describe_grade2,
the following will be printed to the screen:
Testing describe_grade2:
A: Excellent
b: Very Good
C: Acceptable
d: Marginal
F: Insufficient
g: Unrecognized Grade
by: Sharon M. Tuttle
last_modified: 4-27-07
*/
#include <iostream>
#include "describe_grade2.h"
using namespace std;
int main()
{
cout << endl;
cout << "Testing describe_grade2: " << endl;
cout << "A: ";
describe_grade2('A');
cout << "b: ";
describe_grade2('b');
cout << "C: ";
describe_grade2('C');
cout << "d: ";
describe_grade2('d');
cout << "F: ";
describe_grade2('F');
cout << "g: ";
describe_grade2('g');
cout << endl;
return EXIT_SUCCESS;
}