Computer Science, asked by Aiyes, 1 year ago

What is the pseduo code to display area and parameter of a rectangle

Answers

Answered by MRSUMANTH
0

Calculate Area and Perimeter of Rectangle (Simple Pseudocode Example

BEGIN

NUMBER b1,b2,area,perimeter

INPUT b1

UNPUT b2

area=b1*b2

perimeter=2*(b1+b2)

OUTPUT alan

OUTPUT perimeter

END

Attachments:
Similar questions