#include using namespace std; double computeTax(double basePrice); const double TAX_RATE = 0.06; int main() { double price = 0; cout << "Enter a price: "; cin >> price; cout << computeTax(price) << endl; return 0; }// end of main double computeTax(double basePrice) { double taxAmount = 0.0; taxAmount = basePrice * TAX_RATE ; return taxAmount; }// end of computeTax