In this lab, you complete a partially written C++ program that is provided for you. The program, which was written for a furniture company, prints the name of the furniture item, its retail price, its wholesale price, the profit made on the piece of furniture, a sale price, and the profit made when the sale price is used. Instructions Ensure the provided file named Furniture.cpp is open. The file includes variable declarations and output statements. Read them carefully before you proceed to the next step. Design the logic and write the C++ code that will use assignment statements to: Calculate the profit (profit) as the retail price minus the wholesale price Calculate the sale price (salePrice) as 25 percent deducted from the retail price Calculate the sale profit (saleProfit) as the sale price minus the wholesale price. Execute the program by clicking the Run button. Your output should be as follows: Item Name: TV Stand Retail Price: $325 Wholesale Price: $200 Profit: $125 Sale Price: $243.75 Sale Profit: $43.75
Addition of Two Numbers
Adding two numbers in programming is essentially the same as adding two numbers in general arithmetic. A significant difference is that in programming, you need to pay attention to the data type of the variable that will hold the sum of two numbers.
C++
C++ is a general-purpose hybrid language, which supports both OOPs and procedural language designed and developed by Bjarne Stroustrup. It began in 1979 as “C with Classes” at Bell Labs and first appeared in the year 1985 as C++. It is the superset of C programming language, because it uses most of the C code syntax. Due to its hybrid functionality, it used to develop embedded systems, operating systems, web browser, GUI and video games.
In this lab, you complete a partially written C++
Instructions
- Ensure the provided file named Furniture.cpp is open.
- The file includes variable declarations and output statements. Read them carefully before you proceed to the next step.
- Design the logic and write the C++ code that will use assignment statements to:
- Calculate the profit (profit) as the retail price minus the wholesale price
- Calculate the sale price (salePrice) as 25 percent deducted from the retail price
- Calculate the sale profit (saleProfit) as the sale price minus the wholesale price.
-
Execute the program by clicking the Run button. Your output should be as follows:
Item Name: TV Stand Retail Price: $325 Wholesale Price: $200 Profit: $125 Sale Price: $243.75 Sale Profit: $43.75
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images