View Single Post
Old Oct 27th, 2005, 4:00 PM   #16
Ghost
Man Bear Pig Hunter
 
Ghost's Avatar
 
Join Date: Jul 2005
Location: NorCal, USA
Posts: 295
Rep Power: 4 Ghost is on a distinguished road
Quote:
Originally Posted by ivan
What is pseudocode??? Some kind of low-level language?
Pseudocode is basically english terms or plan terms to just understand the logic of how a program or process will be run. Like this:

\\ Calc an average
number1 = 0
number2 = 0
number3 = 0
average = 0

input number1
input number2
input number3

average = (number1 + number2 + number3) / 3

print average

No syntax to it, just anything anyway you can write it, to get the logic down, I believe, I could be wrong, but that is pseudocode to me.
Ghost is offline   Reply With Quote