Pseudocode: Area of a rectangle
Elizaveta Rybina
- Create 3 text boxes, one to input the width (a), one to input height (b), and one to output the answer (c)
- Create variables to hold the width (width), the value of height (height), and the result (answer)
- Get the width from text box (a), and assign it to the variable width
- Get the height from text box (b), and assign it to the variable height
- Calculate width * height, and assign the result to the variable answer
- Assign the variable answer to text box (c)