Forum: Java Jul 2nd, 2009 |
| Replies: 18 Views: 518 Ohh... since my assignment said that the method calculateGPA() should returns a double and store it in the effectiveGPA variable I thought that is why I was doing that....
so would I put that in... |
Forum: Java Jul 2nd, 2009 |
| Replies: 18 Views: 518 ok so basically you're saying now I need to do the calculateGPA() method right..... I hope so because that's what I did next so for that I did this
public double calculateGPA(double... |
Forum: Java Jul 2nd, 2009 |
| Replies: 18 Views: 518 I totally had a bracket at the very very bottom of the page lol....
anyways ok moving on.... so now I have to code the subclasses
since this method is already calculating the average do I just need... |
Forum: Java Jul 1st, 2009 |
| Replies: 18 Views: 518 ok so now the error is this:
C:\Users\Ash Ketchum\Documents\New Folder\Student.java:39: class, interface, or enum expected
}
^
1 error
Tool completed with exit code 1 |
Forum: Java Jul 1st, 2009 |
| Replies: 18 Views: 518 it's ok, you're helping me a lot more than my teachers lol
I just need someone to help me and break it down step by step so thank you so much for taking the time to help
ok so this is what I have... |
Forum: Java Jul 1st, 2009 |
| Replies: 18 Views: 518 so is this what it should look like so far?
public class Student
{
private String string;
private int id;
private String[] classList;
private double gpa;
private double[] gradeList;... |
Forum: Java Jul 1st, 2009 |
| Replies: 18 Views: 518 ok so I am going to try to enumerate the grades with the Student class here is what I put:
public class Student
{
private String string;
private int id;
private String[] classList;
private... |
Forum: Java Jul 1st, 2009 |
| Replies: 18 Views: 518 Hey you guys, I am finishing my last two assignments in my class and I am having trouble because as you will see, the directions are not as they appear. My class is online so I don't have anyone I... |