int main()
{
double wholeSale;
double markupPercent;
cout << "Please enter the wholesale cost of the product:\n";
cin >> wholeSale;
cout << "Please enter the markup percentage:\n";
cin >> markupPercent;
markupPercent /= 100;
cout << fixed << showpoint << setprecision(2);
cout << "The retail price of the product is "<< retailPrice(wholeSale, markupPercent)<< endl;
return 0;
}
//Function retalPrice header
//Accepts values for wholesale cost and markup percentage
//and gives back a value for retail price
double retaiPrice(double num1,double num2)
{
double retail;