Chapter 8: Problem 14
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;
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.