#include <iostream>
using namespace std;
int main()
{
    double propValue,    //Property Value
           name,         //Full Name
           assessment,   //Assessment
           srAssessment, //Sr Assessment
           taxRate,      //Tax rate
           annualPropTax;    //Annual Property tax
    const double EXEMPT = 5000,      //shows the total after exemption
                 QUARTER = 4,        //represents the amount of quarters in year
                 TAXPERHUNDRED = 0.01,  //represents tax rate for every $100
                 SIXTYPERCENT = 0.6;  //Represents the tax based on 60% of original value
    //Gets name from user
    cout << "Please enter your full name: ";
    cin >> name;
    //gets property value from user
    cout << "Enter the actual value of the property: ";
    cin >> propValue;
    //Gets tax rate
    cout << "Enter the tax rate for each $100 of assessed value: ";
    cin >> taxRate;    
}
I assume there is something that i am doing wrong here, but i cant figure it out. Im new to C++ and to programing as a whole. When i run this code it doesnt let me input anything after the "name" variable it just displays all of my output
 
     
     
     
     
    