Advertisements
Advertisements
प्रश्न
Write a program in C++ using OOP technique to compute the circumference of a circle
उत्तर
#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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?