170k views
2 votes
One acre of Land is equivalent to 43,560 square feet. Write a program that ask the user to enter the total square feet of a piece of land. Store 43,560 in a constant variable. Use the constant variable in the algorithm. Return the answer in acres, format your answer with 2 decimal places.

1 Answer

1 vote

Answer:

#include <stdio.h>

int main() {

const float square_feet;

printf("Enter area in square feets: ");

// reads and stores input area

scanf("%f", &square_feet);

float acres= square_feet/43560;

// displays area in acres

printf("area in acres is: %.2f", acres);

return 0;

}

Step-by-step explanation:

code is in C language.

double slashed '//' lines are not code but just comments to understand what it mean in code or for explanation purpose

User Shunji Lin
by
4.7k points