Design a program that asks

  

Design a program that asks the user to enter the total square feet in a tract of land and calculates the number of acres in tract.

one acre of land is equal to 43,560 square feet 

Required:

Flowchart

pseudo code would look like this:

Declare variable sqFeet

Display prompt to user: “Enter the total number of square feet:”

Get number from user and assign to sqFeet

Declare variable acres

Let acres = sqFeet/43560

Display string to user: “The total number of acres is: “

Display value of acres to user.

Tags: No tags