コードは、最低スコアを削除してから計算しないことを除けば、うまく機能します。
出力例:
何点のテストスコアを入力しますか?
3
必要なテスト スコアを入力します。
スコア 1: 58
スコア 2: 96
スコア 3: 78
テスト スコア 最低スコアの平均: 116.00
問題: 出力例でわかるように、これは正しくありません。最低値を含まない平均値を表示する必要があります。私のコードを見直して、どこが間違っているのか教えていただけますか? 私も何人かの人々にそれを見てもらいましたが、彼らは私のコードにバグを見つけることができませんでした. 以下は私のコードです:
コード:
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
//To dynamically allocate an array, Accumulator, to hold the average scores.
double *score;
double total = 0;
double average;
//int for counter, to hold the number of test scores.
int count;
int numTest;
// To obtain the number of test scores the user would like to enter.
cout << "How many test scores would you like to enter? " << endl;
cin >> numTest;
//Dynamically allocates an array large enough to hold the amount of test scores to enter.
score = new double[numTest];
//Get the test scores.
cout << "Enter the test score desired. " << endl;
for (count = 0; count < numTest; count++)
{
cout << "Score " << (count + 1) << ": ";
cin >> score[count];
}
//Find lowest score.
int lowest = score[count];
for (count = 1; count < numTest; count++)
{
if (score[count] < lowest)
lowest = score[0];
}
//Calculate the total test scores.
for (count = 0; count < numTest; count++)
{
total += score[count];
total -= lowest;
}
//Calculate the test scores average minus the lowest score.
average = total / (numTest - 1);
//Display the results
cout << fixed << showpoint << setprecision(2);
cout << "Test Scores Average with the lowest dropped is: " << average << endl;
//Free dynamically allocated memory
delete [] score;
score = 0; // Makes score point to null.
system("pause");
return 0;
}