Posted by gnozahs on Thursday, September 24, 2009 at 11:20am.
If you have started programming, you are probably aware that there are three steps to follow:
1. understand the requirements, the input supplied, and the output desired, including the format and the calculations involved. The result of this phase is documentation.
2. Plan how you will satisfy the requirements, design your algorithm and program flow. Most of the time these consist of the standard steps of input-calculations-output.
The result of this phase of work is a pseudocode. Something similar to a flow chart, but in words, and in a language similar to but independent of a computer language.
3. coding.
From the pseudocode, you will code the program so that it will execute smoothly according to the requirements. This phase will include thorough testing to ensure there are no syntax or logical errors in your coding. The result of this phase is an executable program.
Can you examine your project to see where you're at, and where you encounter difficulties? We will be glad to help at any stage of the project, but cannot without input from you.
Related Questions
writting a program - Speed of Sound. Sound travels through air as a result of ...
C Programming - This is what the program needs to do: Enter a temperature: 32.4 ...
Fund of programming 1 - Complete the following C++ program. The program should ...
computer science - in one the chapter 3 programming challenges you were asked to...
programming MIPS ask - Write a MIPS assembly language program that will cover ...
C Programming - Okay, question. What if I inputted this: Enter a temperature: 32...
programming - develop a program that converts inches to centimeters(1 inch=2.54 ...
computer science - You are required to use the Account class to simulate an ATM ...
Algebra - The folrmula F=9/5c+32 can be used to make temperature conversions ...
programming - How to write a program to create a class roster using an array? ...
For Further Reading