Thread: C# Beginner
View Single Post
Old Sep 19th, 2007, 11:38 AM   #11
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
Pseudo code is merely an expression of the logic in your natural language. For example,
Set variable A to 1
Loop:
   Add 1 to A
   If A is less than 10, return to top of Loop
   Else continue from end of loop
End of Loop
Print the value of A.
End of Program
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote