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.

Respuesta :

Answer:

float numAcres(int squareFeet){

float nA;

nA = (float)squareFeet/43560;

return nA;

}

Step-by-step explanation:

One acre of land is equivalent to 43,560 square feet.

So in x square feet, we are going to have x/43560 acres of land.

I am going to write a C program for you

float numAcres(int squareFeet){

float nA;

nA = (float)squareFeet/43560;

return nA;

}