Question: C++ Solution, fast please. 2 () 7 The following parallel arrays store information about .1000 apartments in Jordan string city[1000); // store the cities where
C++ Solution, fast please.

2 () 7 The following parallel arrays store information about .1000 apartments in Jordan string city[1000); // store the cities where these. apartments are located int bedRooms(1000); // store the number of . bedrooms in each apartment int price[1000); // store the price of each apartment Which of the following code segments calculate the average price of all apartments which have three or more bedrooms and located in Irbid. The result stored "in the variable "x int x=0 for(int i=0;i=3 && city[i] == "Irbid") } ++x x / 1000 ; int x=0 for(int i=0;i=3 && city[i] != "Irbid") } X += price[i] :X / 1000
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
