Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Area and Perimeter of a Rectangle

Flow Chart

Pseudocode

1. Start
Start

2. Use the variables num1, num2,


A, and P
3. Input num1, num2, A, and P

Use variables
num1, num2,
A, P;

4. A = num1 * num2
P = 2 * num1 + 2 * num2
5. Print A and P
6. End

Read num1,
num2, A, P;

A=num1*num2;
P=2*num1+2*num2;

Print A and P;

End

You might also like