#include #include using namespace std; const double RATE = .35; int main() { double cost, total, tax; cout << "Enter the item\'s price: "; cin >> cost; tax = cost * RATE; total = tax + cost; cout.setf(ios::fixed,ios::floatfield); cout.setf(ios::showpoint); cout << setprecision(2) << "item price: $" << setw(6) << cost << endl << "tax: " << setw(6) << tax << endl << "Total Price: $" << setw(6) << total << endl; return 0; }