Psuedocode is used to quickly model a computer program prior to implementation. Use of pseudocode can also make it easier to for non-programmers to follow the flow of an algorithm. Due to the informal nature of pseudocode, no set standard exists for its use. Therefore, one instance of pseudocode might be expressed in complete sentences, while another might be expressed using syntax similar to .
an actual computer program.
Take, for example, a program that takes two numbers and returns the number with the lowest value. One way to express this program in pseudocode is as follows: Set A to the first number Set B to the second number. If A is less than or equal to B, return A If B is less than A, return B
More Reference Links: http://www.unf.edu/~broggio/cop2221/2221pseu.htm http://users.sdsc.edu/~ssmallen/latex/pseudocode.html