blob: 7cd73d1e5e4440daefbe16797ca4a564643c6122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef GRADE_H
#define GRADE_H
#include <vector>
#include "student_info.h"
double grade(double midterm, double final, double homework);
double grade(double midterm, double final, const std::vector<double>& hw);
double grade(const StudentInfo& s);
#endif /* GRADE_H */
|