akosiraff

Download CalculateClassAverage CPP

Dec 4th, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/calculateclassaverage-cpp/
  3. Write a program that calculates class average and number of students who are following average score ranges: over 90 80.00 – 89.99 70.00 – 79.99 65.00
  4. - 69.99 less than 65 Your program must meet following requirements Must use one dimensional array to save average of three exams for each student. -10 points Array size should be flexible. – should be user input via keyboard and depends on number of students
  5. in the class. -10 points Three exam scores should be input by keyboard. And calculate average of three exams and save it to the array. -10 points Create two user-defined functions – one is for calculating class average and the other is for counting how many
  6. students are in each ranges. -20 points All passing variable to the function should be “call by reference”. – meaning that you should pass pointer of an array to the function and each function should use pointer to calculate average as well as counting number
  7. of students in each range. -30 points The program must use proper data type.
  8. Download: http://solutionzip.com/downloads/calculateclassaverage-cpp/
Add Comment
Please, Sign In to add comment