Suppose that scores is an array of 10 components of type double, and:
scores = {2.5, 3.9, 4.8, 6.2, 6.2, 7.4, 7.9, 8.5, 8.5, 9.9}
The following is supposed to ensure that the elements of scores are in nondecreasing order. However, there are errors in the code. Find and correct the errors.
for (int i = 1; i <= 10; i++)
if (scores[i] >= scores[i + 1])
cout << i << " and " << (i + 1) << " elements of scores are out of order." << endl;
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.