Advertisements
Advertisements
प्रश्न
Write a program in C++ to find area of circle using class.
उत्तर
#include
#include
class shape
{
public:double x,y;
virtual void getdata()=0;
virtual void area()=0;
};
class circle : public shape
{
public:double are;
int aa;
void getdata()
{
cout<<"\nenter the radius";
cin>>aa;
}
void area()
{
are=(3.14 *aa*aa);
}
void display()
{
cout<<"area of circle is"<< are;
}
};
int main()
{
shape *s;
circle c;
clrscr();
cout<<"\n\n CIRCLE ..........\n\n";
s=&c;
s->getdata();
s->area();
c.display();
getch();
return 0;
}
shaalaa.com
C++ Programming
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?