English

Write a Program in C++ Using Oop Technique to Compute Cirumference of Circle - Computer Science 1

Advertisements
Advertisements

Question

Write a program in C++ using OOP technique to compute the circumference of a circle

Solution

#include 
class circle
{
 public : float r, c ;
    public : void accept()
    {
       cout << "Enter radius" ;
       cin >> r ;
    }
    void compute ()
    {
       c = 2 * 3.14 * r;
    }
    void print ()
    {
       cout << "circumference is : " << c;
    }
};
void main ()
{
circle obj;
obj.accept();
obj.compute();
obj.print();
getch();
}
shaalaa.com
C++ Programming
  Is there an error in this question or solution?
2017-2018 (March)

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×