Guide To Creating A Pseudocode
Guide To Creating A Pseudocode
Declaring_Variable / variable_declaration (making known the variable by stating the name of the
variable and data type of the variable)
Number2 = integer;
Number3 = integer;
Total = real;
Phrase = string;
Grade = character;
VAT = real
Number2 = 0;
Total = 0;
Grade = “A”;
Body (IPO)
Input
INPUT/READ Number1;
Step1b: put on the screen “please enter the 1st number”
INPUT Number2;
INPUT Number3;
processing
output
step 5b: OUTPUT “the total is: “, total; the total is: 70
step 5c: OUTPUT “the total is: , total”; the total is: , total
Step 1 Count = 1
Step 2 While the variable count (40) is less than 40, stay inside of the loop
Count = 40
Step 6 end