Pseudocode: Area of a rectangle

Aiden Mace

  1. Create 3 text boxes, one to input the length (a) one to input the width (b) and one to output the answer (c)
  2. Create variables to hold the length (length), create variable for width (width), and the result (answer).
  3. Get the input from text box (a), and assign it to the variable (length)
  4. Get the input from text box (b), and assign it to the variable (width)
  5. Calculate (length) * (width), and assign the result to the variable answer.
  6. Assign the variable answer to text box (c).