Ask Question

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.

+4
Answers (1)
  1. 22 May, 20:00
    0
    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;

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “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 ...” in 📗 Mathematics if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers