Question: #include #include using namespace std; int main ( ) { string itemName = Recliner; double retailPrice = 3 2 5 . 0 0 ; double

#include
#include
using namespace std;
int main()
{
string itemName = "Recliner";
double retailPrice =325.00;
double wholesalePrice =200.00;
double salePrice;
double profit;
double saleProfit;
// Write your assignment statements here
cout << "Item Name: "<< itemName << endl;
cout << "Retail Price: $"<< retailPrice << endl;
cout << "Wholesale Price: $"<< wholesalePrice << endl;
cout << "Profit: $"<< profit << endl;
cout << "Sale Price: $"<< salePrice << endl;
cout << "Sale Profit: $"<< saleProfit << endl;
return 0;
}

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!