Complete the following program skeleton so it computes the correct sales tax. the customer is an in-state resident, taxRate should be set to .05. If the custom is an out-of-state resident, taxRate should be set to 0.
#include
using namespace std;
int main()
{
double taxRate, saleAmount;
char residence;
cout << "Enter the amount of the sale: ";
cin >> saleAmount;
Cout << "Enter I for in-state residence or 0 for out-of-\n";
Cout « "state: "; cin.get(residence);
// write code here that assigns 0 to taxRate if residence
// is set to '0' or .05 to taxRate if residence is set // to 'I'
saleAmount += saleAmount * taxRate;
cout << "The total is " << saleAmount;
return 0;
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.