//Castulo Jason Quintero CSC5 Chapter 2, P. 83, #12
//
/**************************************************************
*
* COMPUTE LAND ACRES
* ____________________________________________________________
* This program will compute sqaure feet to acres.
*
* Computation is based on the formula:
* Acres = square feet / acre in square feet
* ____________________________________________________________
* INPUT
* totalSquareFeet = Total amount of square feet
* acreinSqaureFeet = acre in square feet metric
*
* OUTPUT
* totalArces : How many acres were in the square feet.
*
**************************************************************/
#include <iostream>
#include <iomanip>
using namespace std;
int main ()
{
float totalSquareFeet; //INPUT - Total amount of square feet
float acreinSqaureFeet; //INPUT - Acre in square feet metric
float totalArces; //OUTPUT - How many acres were in the square feet
//
// Initialize Program Variables
acreinSqaureFeet = 43560.0;
totalSquareFeet = 389767.0;
//
// Compute MPG Traveled Highway
totalArces = totalSquareFeet / acreinSqaureFeet;
//
// Output Result
cout << "The total amount of arces is " << totalArces << "." << endl;
return 0;
}