Answer to Question #198862 in C++ for Ali raza

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.



1
Expert's answer
2021-05-27T19:11:06-0400
#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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog