Solving multidimensional arrays and vectors


Assignment:

Do the following in C++. The output needs to be in a table format similar to the following sample:

A demographic study of the metropolitan area around Dogpatch divided it into three regions (urban, suburban, and exurban) and published the following table showing the annual migration from one region to another (the numbers represent percentages);

Urban Suburban Exurban
Urban 1.1 0.3 0.7
Suburban 0.1 1.2 0.3
Exurban 0.2 0.6 1.3

For example, 0.3 percent of the urbanites move to the suburbs each year. Using a two-dimensional array with an enumerated type fo the indices to store this table, write a program to determine the population of each region after 10,20,30,40, and 50 years. Assume that the current population of the urban, suburban, and exurban regions are 2.1, 1.4, and 0.9 million, respectively.

Provide complete and step by step solution for the question and show calculations and use formulas.

Solution Preview :

Prepared by a verified Expert
C/C++ Programming: Solving multidimensional arrays and vectors
Reference No:- TGS01924252

Now Priced at $20 (50% Discount)

Recommended (90%)

Rated (4.3/5)