Advertisement
SilverhandX

testscores.h

Mar 21st, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #ifndef TESTSCORES_H
  2. #define TESTSCORES_H
  3.  
  4. class TestScores
  5. {
  6. private:
  7.     int scores;
  8.     double *ptr;
  9. public:
  10.     TestScores(double[], int);
  11.  
  12.     double returnAverage();
  13. };
  14. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement