Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Download: http://solutionzip.com/downloads/student-class-c-2010/
- Create an abstract class calles Student. The student class includes studentID, LastName, firstName and is FullTime. is FullTime is to represent whether the student is full-time student or not. Include an abstract method to determine the tuition, with full -time students paying a flat fee of $2000 and part-time students paying$ 100 per credit hour.
- Create two subclasses called FullTimeStudent, PartTimeStudent. Write a driver class to test the classes you defined by creating two objects of FUllTime Student and Two objects of PartTimeStudent.The students’ information input by user. Display all these 4 students’ information and their tuition.
- Secondly, store these 4 objects in a Student array. Display all these 4 students’ information and their tuition by retrieving the array elements
- Download: http://solutionzip.com/downloads/student-class-c-2010/
Advertisement
Add Comment
Please, Sign In to add comment