Learn to Write Pseudocode: What It Is and Why You Need It

Want to learn how to write pseudocode? Pseudocode is a step-by-step written outline of your code that you can transcribe into the programming language you’re working with. In other words, you’re writing the flow of your code in plain language rather than official coding syntax. Many programmers use pseudocode to plan out the logic of an algorithm before writing it in code. This minHour shows you how to write a pseudocode document for your computer program.

Pseudocode Basics

Understand why pseudocode is useful.

Pseudocode is used to show how a computing algorithm should work. Coders often use pseudocode as an intermediate step in programming in between the initial planning stage and the stage of writing actual executable code. Some other uses of pseudocode include the following:

  • Describing how an algorithm should work. Pseudocode can illustrate where a particular construct, mechanism, or technique could or must appear in a program.
  • Explaining a computing process to less-technical users. Computers need a very strict input syntax to run a program, but humans (especially non-programmers) may find it easier to understand a more fluid, subjective language that clearly states the purpose of each line of code.
  • Designing code in a group setting. High-level software architects will often include pseudocode in their design process to help solve a complex problem they see their programmers running into. If you are developing a program with other coders, you may find that pseudocode helps make your intentions clear.

Note that pseudocode is subjective and nonstandard.

There is no set syntax or rules that you absolutely must use for pseudocode, but it is a common professional courtesy to use standard pseudocode structures that other programmers can easily understand. If you are coding a project by yourself, then the most important thing is that the pseudocode helps you structure your thoughts and enact your plan.

  • If you are working with others on a project—whether they are your peers, junior programmers, or non-technical collaborators—it is important to use at least some standard structures so that everyone else can easily understand your intent.
  • If you are enrolled in a programming course at a university, a coding camp, or a company, you will likely be tested against a taught pseudocode “standard”. This standard often varies between institutions and teachers.

Focus on the main purpose of pseudocode.

It can be easy to revert to writing in code once you hit your stride. Remembering the purpose of your pseudocode—explaining what each line of the program should do—will keep you grounded while creating the pseudocode document.

Writing Good Pseudocode

Use a plain-text editor.

It can be tempting to use a word processor (e.g., Microsoft Word) or a similar program to create a rich-text document, but pseudocode needs as little formatting as possible to keep it simple.

  • You can use pen and paper to write your pseudocode! Try different formats to find what works best for your creative programming process.

Start by writing down the purpose of the process.

Dedicating a line or two to explaining the purpose of your code will help set up the rest of the document, and it will also save you the task of explaining the program’s function to each person to whom you show the pseudocode.

Write only one statement per line.

Each statement in your pseudocode should express just one action for the computer. In most cases, if the task list is properly drawn, then each task will correspond to one line of pseudocode. Consider writing out your task list, then translating that list into pseudocode, then gradually developing that pseudocode into actual, computer-readable code.

Use white space and indentation effectively.

Using white spaces between “blocks” of text will help keep different components of your pseudocode isolated, and indenting different pieces of each block will indicate that those pieces of pseudocode go under a less-indented section.

  • For example, a section of pseudocode that discusses entering a number should all be in the same “block”, while the next section (e.g., the section that discusses the output) should be in a different block.

Capitalize key commands if necessary.

Depending on your pseudocode requirements or the environment in which you’re sharing the pseudocode, you may need to capitalize commands that will remain in the actual code.

  • For example, if you use “if” and “then” commands in your pseudocode, you might want to change them to read “IF” and “THEN” (e.g., “IF THEN “).

Write using simple terminology.

Remember, you’re writing about what the project will do, not summarizing the code itself. This is especially important if you’re writing pseudocode to serve as a demonstration for an individual who doesn’t know coding, or as a project for a beginner programmer.

Keep your pseudocode in the proper order.

While the language you use to modify your pseudocode should be simple, you still need to keep each piece of your pseudocode in the order in which it needs to be executed.

  • This will make writing the actual code easier, since your code will run top-down.

Leave nothing to the imagination.

Everything that is happening in the process must be described completely. Pseudocode statements are close to simple English statements. Pseudocode does not typically use variables, but instead describes what the program should do with variables and data like account numbers, names, or transaction amounts.

Use standard programming structures.

Even if there is no standard for pseudocode, it will be easier for other programmers to understand your steps if you use structures from existing (sequential) programming languages. Use terms like “if”, “then”, “while”, “else”, and “loop” the same way that you would in your preferred programming language. Consider the following structures:

  • if CONDITION then INSTRUCTION — This means that a given instruction will only be conducted if a given condition is true. “Instruction”, in this case, means a step that the program will perform, while “condition” means that the data must meet a certain set of criteria before the program takes action.
  • while CONDITION do INSTRUCTION — This means that the instruction should be repeated again and again until the condition is no longer true.
  • do INSTRUCTION while CONDITION — This is very similar to “while CONDITION do INSTRUCTION”. In the first case, the condition is checked before the instruction is conducted, but in the second case the instruction will be conducted first; thus, in the second case, INSTRUCTION will be conducted at least one time.
  • function NAME (ARGUMENTS): INSTRUCTION — This means that every time a certain name is used in the code, it is an abbreviation for a certain instruction. “Arguments” are lists of variables that you can use to clarify the instruction.

Organize your pseudocode sections.

If you have large sections of pseudocode that define other pieces of pseudocode within the same block, you may want to use brackets or other identifiers to keep everything contained.

  • Brackets—both square [code] and curly {code}—can help contain long segments of pseudocode.
  • When coding, you can add comments by typing “//” on the left side of the comment (e.g., //This is a temporary step.). You can use this same method when writing pseudocode to leave notes that don’t fit into the coding text.

Double-check your pseudocode for readability and clarity.

You should be able to answer the following questions by the end of the document:

  • Would this pseudocode be understood by someone who isn’t familiar with the process?
  • Is the pseudocode written in such a way that it will be easy to translate it into a computing language?
  • Does the pseudocode describe the complete process without leaving anything out?
  • Is every object name used in the pseudocode clearly understood by the target audience?
  • If you find that a section of pseudocode needs elaboration or it doesn’t explicitly outline a step that someone else might forget, go back and add the necessary information.

Creating an Example Pseudocode Document

Open a plain-text editor.

You can use Notepad (Windows) or TextEdit (Mac) by default if you don’t want to install a new program.

Define your program.

While not strictly necessary, writing a one- or two-sentence line at the top of the document will make clear from the beginning the intent of the program:This program will request a greeting from the user. If the greeting matches a specific response, the response will be delivered; if not, a rejection will be delivered.

Write the opening sequence.

Your first command—that is, the first thing your program should do upon running—should be the first line:print greeting “Hello stranger!”

Add the next line.

Place a space between the last line and the next one by pressing ↵ Enter, then create the next line of code. In this example, the user should prompt the next line of dialogue:print prompt press “Enter” to continue

Add the call to action.

In this example, the user will be prompted for a greeting:print call-to-action “How are you?”

Show the user a list of responses.

Again, after pressing ↵ Enter in this example, the user should see a list of possible responses:display possible responses “1. Fine.” “2. Great!” “3. Not good.”

Request input from the user.

This is where the program will ask the user to enter a response:print request for input “Enter the number that best describes you:”

Create “if” commands for the user’s input.

Since there are multiple responses the user can select, you’ll want to add multiple results based on their selected response:if “1” print response “Dandy!”if “2” print response “Fantastic!”if “3” print response “Lighten up, buttercup!”

Add an error message.

In the event that the user incorrectly chooses a response, you can have an error message ready:if input isn’t recognized print response “You don’t follow instructions very well, do you?”

Add any other components of the program.

Go through your document and add or flesh out any details to ensure that both you and anyone reading the document will understand its meaning. As per this method’s example, your final pseudocode document should look something like this:This program will request a greeting from the user. If the greeting matches a specific response, the response will be delivered; if not, a rejection will be delivered.print greeting “Hello stranger!”print prompt press “Enter” to continueprint call-to-action “How are you today?”display possible responses “1. Fine.” “2. Great!” “3. Not good.”print request for input “Enter the number that best describes you:”if “1” print response “Dandy!”if “2” print response “Fantastic!”if “3” print response “Lighten up, buttercup!”if input isn’t recognized print response “You don’t follow instructions very well, do you?”

Save your document.

Press Ctrl+S (Windows) or ⌘ Command+S (Mac), enter a name, and click to do so.

Tips

  • Pseudocode is optimal for complex programs that are hundreds to thousands of lines in length.

Warnings

  • Pseudocode cannot be substituted for actual code when creating a program. Pseudocode can only be used to create a reference for what the code should do.

Leave a Comment