We\'ve been learning about methods in java (using netbeans) in class and I\'m still a bit confused about using methods. One homework question basically asks to design a grade ca
You are calling your method scoreCalc() without passing the parameters you defined. When you are calling it, it was defined as having 3 parameters.
scoreCalc()
scoreCalc(7, 10, 3.0, 8.0);
Also, when creating a class, start it with upper case, GradeCalc
GradeCalc