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.)

Respuesta :

Answer:

#include <iostream>

using namespace std;

int

main ()

{

 int annualCost[]={900,1050,1000,10,2};

 char healthOption[]={'A','W','L','R','D'};

char best2;

 if (annualCost[0] < annualCost[1])

   {

     best2 = healthOption[1];

   }

 else

   {

     best2 = healthOption[0];

   }

cout << "Best2 " << best2 << endl;

return 0;

}

Explanation:

Take two array annualCost and healthOption and initialize. Check if annualCost[0] is greater than annualCost[1] best2 (best health care option) is healthOption[0] otherwise best2 is healthOption[1].

Answer:

if (annualCost[0]<annualCost[1])

best2=healthOption[0];

else

best2=healthOption[1];

Explanation:

ACCESS MORE