This question is Chapter 5 Programming exercise #13 in C++ Programming: From Pro
ID: 3627165 • Letter: T
Question
This question is Chapter 5 Programming exercise #13 in C++ Programming: From Problem Analysis to Program Design (5th) book, written by D.S. Malik.the population of a town A is less than the population of a town B. However, the population of town A is growing faster than the population of town B. Write a program that prompts the user to enter the population and growth rate of each town. the program outputs after how many years the population of town A will be greater than or equal to the population of town B and the populations of both towns at that time. ( A sample input is: Population of town A = 5000, growth rate of town A = 4%, population of town B = 8000, and the growth rate of town B = 2%.)