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%.)
Explanation / Answer
#include #include //my compiler does not halt when running the program unless forced to. in the spirit of not adding unnecessary values, I use Sleep instead. using std::cout; using std::cin; using std::endl; int main(){ int years = 0; double populationA, populationB, newMembersA, newMembersB, growthRateA, growthRateB; coutRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.