C++ program of Write a program to find the area of rectangle, square and circle.
Answers
Answered by
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