Summary: Pseudocode conventions and control structure examples of: if then else, case, while, for, do while and repeat until.
No standard for pseudocode syntax exists. However, there are some commonly followed conventions to help make pseudocode written by one programmer easily understood by another programmer. Most of these conventions follow two concepts:
The sequence control structure simply lists the lines of pseudocode. The concern is not with the sequence category but with selection and two of the iteration control structures. The following are commonly used ending phrase-words:
| Control Structure | Ending Phrase Word |
| If then Else | Endif |
| Case | Endcase |
| While | Endwhile |
| For | Endfor |
The Do While and Repeat Until iteration control structures don't need an ending phrase-word. We simply use the first word, then the action part, followed by the second word with the test expression. Here are some examples:
If age > 17
Display a message indicating you can vote.
Else
Display a message indicating you can't vote.
Endif
Case of age
0 to 17 Display "You can't vote."
18 to 64 Display "Your in your working years."
65 + Display "You should be retired."
Endcase
count assigned zero
While count < 5
Display "I love computers!"
Increment count
Endwhile
For x starts at 0, x < 5, increment x
Display "Are we having fun?"
Endfor
count assigned five
Do
Display "Blast off is soon!"
Decrement count
While count > zero
count assigned five
Repeat
Display "Blast off is soon!"
Decrement count
Until count < one
"Programming Fundamentals - A Modular Structured Approach Using C++ is a new course written by Kenneth Leroy Busbee, a faculty member at Houston Community College. This text introduces students to […]"