Answered step by step
Verified Expert Solution
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:
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started