// To Compute the property tax payment in four equal quarterly payments
#include <iostream> // for I/O
#include <cmath> // for using pow function
#include <string> // used for string
#include <iomanip> // required header for strings
using namespace std;
int main()
{
double tax_Rate;
cout << "Enter the tax rate for each $100 of assessed value: ";
cin >> tax_Rate;
double property_Value;
cout << "Enter the actual value of the property: ";
cin >> property_Value;
Enter the tax rate for each $100 of assessed value
It looks like they're supposed to pay $5.72 for each $100 of assessed value, but in this calculation, they're paying $5.72 for every $1 of assessed value.