Question: 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:
Enter the price of the item one year ago:
Enter the price of the item two years ago:
Current year inflation:
Inflation one year ago:
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
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
