You need to include the constructor parameters in main to meet the requirements of your Student constructor and then the same for the various methods you call in lines 92-93
Without the parameters and a default constructor, A() is not a Student.
You might consider simplifying your class and using the class to hold the grades. That way you don't need to pass them around via the functions. ie a Student 'knows' their grades. You can enter the grades the way I have shown or make it a method of the class as you have done which is just as good. The important thing is the array is a private member of the class and not external to it.
Thanks very much for the solutions and alternative methodologies. This isn't for any assignments, I'm just curious about coding and picked up a few old Uni textbooks from my science degree.