/*--------------------------------------------------
 header file for function grade_in_range
   created by st10 at Fri Oct 14 12:37:21 PDT 2016
--------------------------------------------------*/
#ifndef grade_in_range_H
#define grade_in_range_H

#include <string>
using namespace std;

const double MIN_GRADE = 0.0;
const double MAX_GRADE = 100.0;

bool grade_in_range(double grade);

#endif