[SOLVED] Population_while.java and Population_for.java

20.00 $

Programming resource
Digital learning resource
Category:
Practical programming resource
Suitable for guided study and reference
Tutor guidance available when needed

Description

5/5 - (1 vote)

Assume that the population of Mexico is 121 million and that the population increases 1.05% annually (new population = current population x 1.0105).

Assume that the population of the United States is 315 million and that the population is reduced 0.16% annually (new population = current population x 0.9984) .

Assume that the population of Japan is 127 million and that the population increases 1.01% annually (new population = current population x 1.0101).

Write an application that displays the populations for the three countries every year until both Mexican and Japanese populations pass US population.

Display the number of years it took for Mexico’s and Japan’s populations to exceed that of the United States.

Use both while loop and for loop to accomplish the task. Save the two files (one for each type of loop) as Population_while.java and Population_for.java

Resource details

Understand the Task Before You Use the Resource

Review the requirements, identify the programming concepts involved, study the implementation and test your understanding with your own examples and modifications.