Средняя = calcaverage(инт scores1 есть проблемы кто поможет...
Create a program that contains 4 methods / functions... main(), getTestScores(), calcAverage(), and displayAverage(). The main() method should call the getTestScores() method to get and return each of 3 test scores. The main function should then call the calcAverage() method and send the three scores down to calculate and return the average of the three test scores. The main() method should then call the displayAverage() method to display the average of test scores.
Что я уже пробовал:
// #include <iomanip> #include <iostream> using namespace std; double calcAverage (int, int, int); int main() { int scores1 = 0, score2 = 0, score3 = 0; double average = 0.0; //get input items cout << "First test score: "; cin >> scores1; cout << "Second test score: "; cin >> score2; cout << "Third test score: "; cin >> score3; average = calcAverage(int scores1 int score2, int score3); cout << "Average: " << average << endl;
Dave Kreskowiak
Описание проблемы может дать вам ответы. Прямо сейчас, похоже, вы хотите, чтобы кто-то написал код для вас.
Japanese Relaxation
это среднее значение строки = calcAverage(int scores1, int score2, int score3);
Richard MacCutchan
Вы предоставили определение понятия calcAverage
функция, но вы не обеспечили реализацию.