Ask Question
9 December, 02:16

Assume that two parallel arrays have been declared and initialized: healthOption an array of type char that contains letter codes for different healthcare options and annualCost an array of type int. The i-th element of annualCost indicates the annual cost of the i-th element of healthOption. In addition, there is an char variable, best2. Write the code necessary to assign to best2 the health option with the lower annual cost, considering only the first two healthcare options. Thus, if the values of healthOption are 'B', 'Q', 'W', 'Z' and the values of annualCost are 8430, 9400, 7050, 6400 your code would assign 'B' to best2 because 8430 is less than 9400 and is associated with 'B' in the parallel array. (We ignore 'W' and 'Z' because we are considering only the first two options.)

+3
Answers (1)
  1. 9 December, 04:59
    0
    if (annualCost[0] < annualCost[1])

    {

    best2 = healthOption[0];

    }

    else

    {best2 = healthOption[1];

    }

    Explanation:

    The required code is given above.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Assume that two parallel arrays have been declared and initialized: healthOption an array of type char that contains letter codes for ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers