Pseudocode: Area of a rectangle
Fredy Chavez
- Create three text boxes, one to input the Length (a) and the Width (b), and one to output the Area (c).
- Create variables to hold the Length (length), Width (width), and the result (area).
- Get the Length from text box (a), assign it to variable length.
- Get the Width from text box (b), assign it to variable width.
- Calculate width * length, and assign to variable area.
- Assign the variable area to text box (c).