Converting pseudocode to a high-level language
Generally, it is quite straightforward to convert from pseudocode to a high-level language, but you do need to be careful and look out for areas where the syntax is 'similar but different' and may confuse you. In particular, think carefully about count-controlled loops.
With count-controlled loops, many languages use syntax that is quite different from pseudocode. Consider the following segment of pseudocode:
FOR i = 1 TO 5
PRINT(i)
NEXT i
Which, if implemented would produce the output:
1
2
3
4
5
In its pseudocode form, a count-controlled loop has three components:
A counter | This is the variable that is used to control the number of iterations of the loop. In the pseudocode example, the variable An important thing to consider when converting the pseudocode to real code, is whether the counter variable needs to be declared before it can be used in the loop header. Some languages are strongly typed; this means that each variable must be declared with an identifier and data type before it can be used. |
A specified range of values for the counter | This defines the range of values that the counter will take. In the pseudocode example, In many languages, the range is specified by stating a condition within the loop header, such as The initial start value for the counter is very important if the counter is being used to index an array within the body of the loop. The first element of an array has an index of 0 so the counter must have a start value of 0. |
An implied or explicit step value | The step value defines how the value of the counter will change on each iteration of the loop. It is usually not specified and you should assume that the step value is +1. |
The table below shows how the pseudocode example can be implemented, in a range of programming languages.
Language | Equivalent program code | Notes |
---|---|---|
Python |
| In Python, variables do not need to be declared before they are used so the counter The range of values is usually specified using the built-in function
The default step value is 1 so in this example does not need to be specified. |
Java |
| Java requires you to define a variable and specify its data type before it is used. This can be done within the loop header as shown. The range of values for the counter and the step value are specified in the same way as explained for PHP.
|
AQA pseudocode conventions
Construct | Syntax/explanation | Pseudocode example |
---|---|---|
Subroutines | Parameters are specified within parentheses (brackets) following the name of the subroutine. Any return value(s) follow the keyword
|
|
Calling a subroutine | The name of the subroutine being called is specified with the values of the parameters in brackets. |
|
Variable assignment | Assignment is indicated with a left pointing arrow. | x ← 3 |
Constants | Constant names (identifiers) are written in uppercase and prefixed with the word constant . They will be given a value when first declared. | constant VAT ← 0.2 |
Input | User input is collected and assigned to a variable. | user_name ← USERINPUT |
Output | The keyword OUTPUT is followed by a text string or variable. |
|
Selection |
|
|
Iteration (count controlled) |
The |
will output: |
Iteration (condition controlled – condition at end) |
The statement block is run at least once. The condition is checked at the end of each iteration of the loop. |
|
Iteration (condition controlled – condition at start) |
The statement block may never be run. The condition is checked at the start of each iteration of the loop. |
|