Question #198862

Write a program that has a class named as Area and has attributes that are necessssary to calculate the area of shapes i.e length,width,height,radius etc.



Expert's answer

#include <iostream>
using namespace std;
class Area(){
    private:
        double length;
        double width;
        double height;
        double radius;
};
int main()
{
    Area a;
    return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS