Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Instructions Write a program in C + + that outputs inflation rates for two successive years and whether the inflation is increasing or decreasing. Ask

Instructions
Write a program in C++ 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

Beginning C# 5.0 Databases

Authors: Vidya Vrat Agarwal

2nd Edition

1430242604, 978-1430242604

More Books

Students also viewed these Databases questions

Question

How do businesses control cash receipts by mail? Discuss.

Answered: 1 week ago

Question

5. Members are highly motivated to take control of their work.

Answered: 1 week ago

Question

Which account would be included on a post-closing trial balance

Answered: 1 week ago

Question

What are the main differences between rigid and flexible pavements?

Answered: 1 week ago

Question

What is the purpose of a retaining wall, and how is it designed?

Answered: 1 week ago

Question

How do you determine the load-bearing capacity of a soil?

Answered: 1 week ago

Question

what is Edward Lemieux effect / Anomeric effect ?

Answered: 1 week ago