Computer Science, asked by Anonymous, 1 year ago

___♥____
Write C++ Program to find area of rectangle.

#Dont spam
@BeardoBoy ​

Answers

Answered by Anonymous
0

Answer:

· C++ Program to Compute the Area of Circle. * C++ Program to Compute the Area of Circle. float radius, area; std::cout << "Enter the radius of circle : "; std::cin >> radius; area = 3.14 * radius * radius; std::cout << "Area of circle with radius " << radius << " is " << area

Answered by sougatap57
0

Answer:

#include <iostream>

using namespace std;

int main()

{

  float area,b,l;

  cout<<"enter the length and breadth";

  cin>>l>>b;

  area=l*b;

  cout<<"the area is="<<area;

  return 0;

}

Output

enter the length and breadth 5 6

the area is=30

Similar questions