Advertisement
akosiraff

Tuition

Apr 13th, 2014
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/tuition/
  3. Instructions Module 7 Assignment 1
  4. Modify the tuition program from earlier in the semester. Rename the class as TuitArray with your initials – TuitArraylb
  5. Modifications:
  6. 1. Save the total tuition for each student within an array. Create an array to hold the calculated tuition for 15 students.
  7. 2. Determine and display the highest and lowest tuition amounts.
  8. 3. Determine and display the average tuition of the fifteen students
  9. Hint: Populate the array, then use the populated array for the highest, lowest, and average.
  10. Previous Assignment
  11. Write a java application that determines the amount tuitionld cost based on the number of hours enrolled and of the student type.
  12. 1. Undergraduate – in-state – $179.60 per hour
  13. 2. Undergraduate – out of state – $639.07 per hour
  14. 3. Graduate – in state – $229.00 per hour
  15. 4. Graduate – out of state – $831.00
  16. 5. On-Line – undergraduate – $251.00 per hour
  17. 6. On-Line – graduate – $303.00 per hour
  18. Allow the user to enter the number of hours and the student type. Use a switch statement to determine the cost per hour. If the student is enrolled in more than 15 hours the maximum cost will be for 15 hours. Display the student type, the cost per hour, the number of hours and the total cost.
  19. (Use a loop to allow the user to enter multiple sets of data).
  20. Save the file as Tuition with your initials: Tuitionlb.java
  21.  
  22. Download: http://solutionzip.com/downloads/tuition/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement