Problem:
Question: Write a program on MVS that displays the name of each month in a year and its rainfall amount, sorted in order of rainfall from highest to lowest. The program should use an array of structures, where each structure hold the name of a month and its rainfall amount.
Use a constructor to set the months names, and at least 1 class,
Make the program modular by calling on different functions to input the rainfall amounts, to sort the data, and to display the data.
Show the code, demonstrate it works properly and describe what it is doing.