मराठी
महाराष्ट्र राज्य शिक्षण मंडळएचएससी विज्ञान (संगणक विज्ञान) इयत्ता १२ वी

Implement a Class Average. Include a Constructor in It Which Will Accept Value of Three Variables from User. Include Two More Functions in It, One Functions Calculates Average and Other Prints It. - Computer Science 1

Advertisements
Advertisements

प्रश्न

Implement a class average. Include a constructor in it which will accept value of three variables from user. Include two more functions in it, one functions calculates average and other prints it.

उत्तर

# include 
class average
{
   float a, b, c, avg;
   public : average(); //constructor
   void calculate();
   void print();
};

average::average()
{
  cout<<“Enter numbers”;
  cin>> a >> b >> c;
}

void average::calculate()
{
  avg = (a + b + c)/3;
}

void average::print()
{
  cout <<" The average of 3 nos is:" <<avg;
}

void main()
{
  average obj;
  obj calculate();
  obj print();
}
shaalaa.com
C++ Programming
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2015-2016 (March)

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×