हिंदी

Write a Program in C++ to Find Area of Circle Using Class. - Computer Science 1

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2014-2015 (March)

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×