Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public double average() {
- double sum = 0;
- int counter = 0;
- double average = 0;
- for (int i = 0; i < Student.getGrade().size(); i++) {
- sum = sum + Student.getGrade().get(i);
- counter++;
- }
- average = sum / counter;
- return average;
- }
Advertisement
Add Comment
Please, Sign In to add comment