Pseudocode: Area of a rectangle
Aiden Mace
- Create 3 text boxes, one to input the length (a) one to input the width (b) and one to output the answer (c)
- Create variables to hold the length (length), create variable for width (width), and the result (answer).
- Get the input from text box (a), and assign it to the variable (length)
- Get the input from text box (b), and assign it to the variable (width)
- Calculate (length) * (width), and assign the result to the variable answer.
- Assign the variable answer to text box (c).