Sample Solution (C++ and JAVA)
View this page after giving the project your best effort.
This section will identify docs that show the development of our solution. When you are working through any project you will need to consider things like variable names, how to show results, logic for coming up with your result and then get down to writing code that will tell the computer exactly what to do.
Output Specs
Program Analysis WS
Top Half
Bottom Half
Flowchart
Flowchart Clip
Pseudo Code
// The Land Calculation Program
// PDD Chapter 2 Programming Exercise
// Check the Gaddis Book
Declare Real numSquareFeet
Declare Real acres
Display "Enter the square feet in a tract of land:"
Input numSquareFeet
Set acres = numSquareFeet / 43560
Display "The number of acres in the tract are:"
Display acres