Computer Science, asked by akshaydarvesh41, 2 months ago


20. Write a program to find the area of a Square / rectangle / triangle using function overloading​

Answers

Answered by ahili22
8

Answer:

length = int(input (" Enter the length: "))

breadth = int(input(" Enter the breadth: "))

area = 2*length + 2*breadth

print (" The area of rectangle is: ",area)

Mark me brainliest

Similar questions