Programming  Exercise C++ Instructions : 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 output 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. This is what I have so far not sure how to continue. Please Help, Thank you!   #include  #include #include using namespace std; int main()  {   double currentPrice;   double priceOneYearAgo;   double priceTwoyearsAgo;   double infCurrentYear;   double infOneYearAgo;   cout << fixed << showpoint << setprecision(2);   getPrices(currentPrice, priceOneYearAgo, priceTwoyearsAgo);   calcualteInflation(currentPrice, priceOneYearAgo, priceTwoyearsAgo, infCurrentYear, infOneYearAgo);   priceResult(infCurrentYear, infOneYearAgo);          return 0; }

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter4: Selection Structures
Section4.3: Nested If Statements
Problem 7E
icon
Related questions
icon
Concept explainers
Question
100%

Programming  Exercise C++

Instructions :

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 output 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.

This is what I have so far not sure how to continue. Please Help, Thank you!

 

#include <iostream>
#include <iomanip>
#include <string>

using namespace std;

int main() 
{
  double currentPrice;
  double priceOneYearAgo;
  double priceTwoyearsAgo;
  double infCurrentYear;
  double infOneYearAgo;

  cout << fixed << showpoint << setprecision(2);

  getPrices(currentPrice, priceOneYearAgo, priceTwoyearsAgo);
  calcualteInflation(currentPrice, priceOneYearAgo, priceTwoyearsAgo, infCurrentYear, infOneYearAgo);

  priceResult(infCurrentYear, infOneYearAgo);
    
    return 0;
}

 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Operators
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr