Advertisement
akosiraff

Exam Statistics Program JAVA

Jan 29th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/exam-statistics-program-java/
  3. Description
  4. Compute the median score in addition to what the program already does. To compute the median, sort the scores and the score in the middle is the median. If there is an even number of scores, average the two scores in the middle to obtain the median. So, in the sample score list above, the median would be 83.0
  5. β€’
  6. The number of scores
  7. β€’
  8. The minimum, maximum, and average scores
  9. β€’
  10. The number of As, Bs, Cs, Ds, and Fs, using a
  11. 90
  12. -
  13. 80
  14. -
  15. 70
  16. -
  17. 60 scale.
  18. Sample Run
  19. Below is an example of what your program may look like. It does not have to be identical. The user’s input appears in italics (purple).
  20. ***Welcome to the Exam Statistics Program!!***
  21. Please enter the name of your data file: esp.txt
  22. Minimum score: 72
  23. Maximum score: 92
  24. Average score: 82.5
  25. Number of scores by letter grade:
  26. A: 1
  27. B: 3
  28. C: 2
  29. D: 0
  30. F: 0
  31. There are 6 scores.
  32. Here is the sample input file
  33. esp.txt
  34. :
  35. 6
  36. 88
  37. 77
  38. 92
  39. 82
  40. 84
  41. 72
  42.  
  43. Download: http://solutionzip.com/downloads/exam-statistics-program-java/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement