CS 1713 Introduction to Computer Science:
Comments on Project 2
This project was graded out of 20 points.
- The toString method should not print anything.
- The toString method should use the size, the the capacity.
- getRank can be applied to a value that is not in the list.
- The order of operations matters. The following are not the same in Java:
(count/size)*100
(count*100)/size
- You do not need to sort the array to do this assignment.
- There is usually no point in doing a test if you have no idea what
the answers should be.
Below is some sample code:
Percentile.java