Pseudocode: Area of a rectangle

Elizaveta Rybina

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