
Solving The Problem For a Simple Case – Implementation Steps
We built a foundation for our application in the last episode. Now, we move into solving the problem that our customers will pay for. This step is just putting our plan on the computer and handling a single case. Our actions should be defined in our specification to the point that this is relatively easy. Document As You Go A way to approach this step is to start with comments, move to text/hard-coded output, and then to plug in the computations. When you follow this approach, the actions of this phase follow the checklist below. Pseudo code the process in comments Add console (or other simple output) commands that reflect the comments Use single and hard-coded problem parameters Start with the... Read more