Sample Solution (C++ and JAVA)

View this page after giving the project your best effort.

Design Docs

 

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

Output Specs
Output Specs

Program Analysis WS

Top Half

Program Analysis WS
Program Analysis WS

Bottom Half

Program Analysis WS
Program Analysis WS

Flowchart

Flowchart Clip

Flowgorithm Flowchart
Flowgorithm Flowchart

 

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

 

Author's Flowchart

Flowchart
Flowchart

Author's Pseudo Code

Pseudocode
Pseudocode

Code

 C++ Code

CPP Code
CPP Code

JAVA Code

Land Calculation - JAVA
Land Calculation - JAVA