So I have a basic assignment...

Code:
// File:     program2.cpp
// Author:   Name
// Course:   CSC 135
// Date:     September 25, 2013
// Purpose:  The program will ask for the number of acres and actual property value per acre. It will calculate total actual value, assessment value and the property tax.

#include <iostream>
#include <iomanip>
#include <cmath>
...