Prob 1.
Write a program that reads a student name followed by five test scores, the program should output the student name, and the five test scores, and the average test score. Output test score with two decimal places.
A sample input is:
Andrew Miller 87.50 89 65.75 37 98.50
Outputthe student name, the five test scores, and the average of five test scores.
Prob 2.Coin change problem
Write a program that takes as input any change expressed in cents. It should compute the number of half-dollars, quarters, dimes, nickels and pennies to be returned. Returning as many as half-dollars as possible, then quarters, dimes, nickels and pennies. For example, 483 cents should return 9 half-dollars, 1 quarter, 1 nickel, and 3 pennies.