Computer Science, asked by dhotreaarti55, 18 days ago

C++ program of Write a program to find the area of rectangle, square and circle.​

Answers

Answered by chauhanjai29201
0

Answer:

# include < iostream. h>

void main()

{

int len, br, area;

cout<<"Enter the length, breadth" ;

cin>>len>>br;

area of rectangle = len*br

cout <<"area of Rectangle is"<<area;

}

Similar questions