Hello , I'm new with java and I have a work to do, but I don't understand anything :(
Can someone please help me ?
Create a program composed of two classes called: GradeCalculator (with main ( ) method ) and Student.
The Student class structure is presented below:
Student
studentName : String
studentLastName : String
studentid, gradeGL1, gradeGL2 : int
Student(String,String) //constructor
calculatePercent() : double
checkPassing() : boolean
In the main method provide a user interface for inputing the values for a student. Display a warning if GLab values are in the wrong range.
Grades for both GLabs are between 0 to 100,
Conditions for passing:
A student must have received over 50 points in AT LEAST one G-Lab AND the total must be above 50 % .