___♥____
Write C++ Program to find area of rectangle.
#Dont spam
@BeardoBoy
Answers
Answered by
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
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
Science,
6 months ago
Chemistry,
6 months ago
Social Sciences,
1 year ago
Math,
1 year ago
Physics,
1 year ago