Write the number of days in months program so that the program prompts the user for the file name and reads the dates from the file.

The dates in the file are written in the format dd.mm.yyyy. The program looks for the month in each line (hint: use split) and prints out the number of days in that month.

Rewrite the function so that it does not contain conditional (if) statements for returning the number of days. The...