Help modifying this C++ Program
#include<iostream>
using namespace std;
double calcFinalScore(double, double, double);
void printFinalScore(double);
int main() {
double test1, test2;
double hw;
double finalScore;
cout << “Enter the score for test #1: “;
cin >> test1;
cout << “Enter the score for test #2: “;
cin >> test2;
cout << “Enter the score for homework: “;
cin >> hw;
finalScore = calcFinalScore(test1, test2, hw);
printFinalScore(finalScore);
system(“PAUSE”);
return 0;
}
double calcFinalScore(double test1, double test2, double hw) {
double finalScore =
OR
OR