One acre of land is equivalent to 43,560 square feet. Write a program that calculates the number of acres in a tract of land with 389,767 square feet.
#include <iostream>
using namespace std;
int main()
{
cout<<"The number of acres will be\t"<<389767/43560;
return 0;
}
Comments
Leave a comment