Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Need this is C++ I'm not sure what is missing in my code. Please fix Write the implementation (.cpp file) of the Averager class of

Need this is C++

I'm not sure what is missing in my code. Please fix

image text in transcribed

Write the implementation (.cpp file) of the Averager class of the previous exercise. The full specification of the class is . An data member named sum of type integer . An data member named count of type integer .A constructor with no parameters. The constructor initializes the data members sum and the data member count to O . A function named getSum that accepts no parameters and returns an integer. getSum returns the value of sum . A function named add that accepts an integer parameter and returns no value. add increases the value of sum by the value of the parameter, and increments the value of count by one .A function named getCount that accepts no parameters and returns an integer. getCount returns the value of the count data member, that is, the number of values added to sum . A function named getAverage that accepts no parameters and returns a double. getAverage returns the average of the yalues added to sum The value returned should be a value of type double (and therefore you must cast the data members to double prior to performing the division) SUBMIT 1 class Averager 3 private: 4 int sum; 5 int count; 6 public: 7 Averager) 8 int getSum(); 9 void add(int 10 int getCount(); 11 doule getAverage); 12 3

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Is rehearsal a useful tool? How or how not?

Answered: 1 week ago