Question: *****Example below***** Write a C++ program to prompt the user to enter an item number, a description, a current price, and a markup percentage in

 *****Example below***** Write a C++ program to prompt the user to

*****Example below*****

enter an item number, a description, a current price, and a markup

Write a C++ program to prompt the user to enter an item number, a description, a current price, and a markup percentage in percentage format. Once the user enters in the required information, the program will then calculate the item's new price by multiplying the current price with the percentage markup value. Item number: string Description: string Current Price: float Percentage markup: float New Price: float The program will need to: convert the percent input into decimal notation calculate the new price by marking up the current price by the input percentage amount display the previous input from the user in subsequent messages (see example below) o heading should display on the first line o item number should display in the item description line o item number should display in the current price line o the output should display: item number item description current price - in currency format new price - in currency format All monetary values should be in currency format. Follow all good programming naming conventions. You may assume the user will enter valid input. The Markup Calculator Enter the item number: 55B94 Enter Item 55B94 description: Hammer Enter the current price of item 55B94: $19.99 Enter the percent markup % for item 55894: 15 Output: Item Number: 55B94 Description: Hammer Current Price: $19.99 % Markup: 15% New Price: $22.99

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!