CSharp to Pseudo Code

From TRCCompSci - AQA Computer Science
Revision as of 14:17, 18 January 2019 by Admin (talk | contribs) (C#)
Jump to: navigation, search

Assigning a value

'←' is to assign a value to a variable, essentially just like '=' in C#.

While Loop

The command words used in the exam questions is:

WHILE (Condition)
     ....................
ENDWHILE

Condition will be something which equates to either true or false. Some examples of the conditions are:

WHILE (root * root) < Number

or:

WHILE (factorfound = false)

So the condition is always contained within the round brackets.

C#

Remember to check if something is equal in C# is '=='.

Remember 'Greater than or Equal' or Less than or Equal' is '>=' or '<='.

while (factorfound == false)
{
     ............
}