Ask Question
18 February, 13:24

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.

+2
Answers (1)
  1. 18 February, 14:51
    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?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers