Pseudocode: Area of a rectangle

Fredy Chavez

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