Today We Run a program to find Area of a Rectangular Ground in c++ by class and object.
This c++ language programming is free all type of errors like the compiler and runtime errors and this programming is tested to compile and then run the program code.
Here is only programming code with the output. This programming output is customized to understand easily.
How to find the area of a rectangular ground in c++ programming?
#include
using namespace std;
class Rect_Ground{
public:
double l, w;
void area(double l, double w) {
double result;
result = l * w;
cout<<“The area of the box: “<
};
int main() {
Rect_Ground R;
cout << “enter the value of length: “;
cin >> R.l;
cout << “enter the value of width: “;
cin >> R.w;
B1.volume(R.l, R.w);
return 0;
}
enter the value of width: 10
The area of the Rectangular Ground:150 square unit;
‘result= (22/7)*r*r
where r is the radius and 22/7 use as Pie Value
I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this c++ programming code or input & output please comment below
If you have another question about c++ programming send an email by contacting us form is given on the page right side.
Please share your experience about this post,
Thank You!