15 lines
298 B
C
15 lines
298 B
C
|
#ifndef GUARD_grade_h
|
||
|
#define GUARD_grade_h
|
||
|
|
||
|
#include <vector>
|
||
|
#include "Student_info.h"
|
||
|
|
||
|
double grade(double, double, double);
|
||
|
double grade(double, double, const std::vector<double>&);
|
||
|
double grade(const Student_info&);
|
||
|
|
||
|
bool pgrade(const Student_info&);
|
||
|
bool fgrade(const Student_info&);
|
||
|
|
||
|
#endif
|