Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that outputs inflation rates for two successive years and whether the inflation is increasing or decreasing. Ask the user to input the

Write a program that outputs inflation rates for two successive years and whether the inflation is increasing or decreasing. Ask the user to input the current price of an item and its price one year and two years ago.

To calculate the inflation rate for a year, subtract the price of the item for that year from the price of the item one year ago and then divide the result by the price a year ago.

Your program must contain at least the following functions:

a function to get the input;

a function to calculate the results;

a function to output the results.

Use appropriate parameters to pass the information in and out of the function.

An example of the program is shown below:

Enter the current price of the item: 10 Enter the price of the item one year ago: 8 Enter the price of the item two years ago: 4 Current year inflation: 0.25 Inflation one year ago: 1.00 Inflation is not increasing.

Since your program handles currency, make sure to use a data type that can store decimals with a decimal precision of 2.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases Illuminated

Authors: Catherine Ricardo

2nd Edition

1449606008, 978-1449606008

More Books

Students also viewed these Databases questions

Question

What would you do?

Answered: 1 week ago