Java Assignment-
You are to write a program to calculate a tuition bill for a student.
1. First you will read the following data from separate dialog boxes:
• Name of the Student
• Major of the student
• Number of credits the Student is taking
• Amount of the Meal Plan
2. Next you will calculate the following:
• Tuition = number of credits times $800
• Technology fee = number of credits times S25
• Total due = Tuition +Technology fee +Meal plan amount
• Discount = Total due times 5%
• Final Amount due = Total due - discount
3. Finally, print out all data in one dialog box.