Retail Price Calculator Create an application that lets the user enter an item's wholesale cost and its markup percentage. It should then display the items retail price. For example: If an item's wholesale cost is $5.00 and its markup percentage is 100 percent, then the item's retail price is $10. If an item's wholesale cost is $5.00 and its markup percentage is 50 percent, then the item's retail price is $7.50. The program should have a method named CalculateRetail that receives the wholesale cost and the markup percentage as arguments and returns the retail price of the item. In addition, there should be the name of the Wholesale Company displayed (be creative). If the cost is over $500, display a $20 discount on the retail price. For example: If an item's wholesale cost is $600.00 and its markup percentage is 100 percent, then the item's retail price is $1,180. ( Markup = $600 * 100% = 600 Retail Price = $600 + $600 - $20 (wholesale cost + markup - discount)
Retail Price Calculator
Create an application that lets the user enter an item's wholesale cost and its markup percentage. It should then display the items retail price. For example:
If an item's wholesale cost is $5.00 and its markup percentage is 100 percent, then the item's retail price is $10.
If an item's wholesale cost is $5.00 and its markup percentage is 50 percent, then the item's retail price is $7.50.
The program should have a method named CalculateRetail that receives the wholesale cost and the markup percentage as arguments and returns the retail price of the item. In addition, there should be the name of the Wholesale Company displayed (be creative). If the cost is over $500, display a $20 discount on the retail price. For example:
If an item's wholesale cost is $600.00 and its markup percentage is 100 percent, then the item's retail price is $1,180. (
Markup = $600 * 100% = 600
Retail Price = $600 + $600 - $20 (wholesale cost + markup - discount)
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images