Write the following program in C (Geany)

The output should look like:

Assignment 5 for reference (determined the amount of days in each month):

This program will build off Assignment 4 or 5 (your choice). Problem: For any month number and year, your program will determine the number of days in the month (must use a switch with multiple cases - Assignment 5 - or a series of ifs or if-else statements - Assignment 4 ; must NOT use any library function or other means of determining the number of days in the month; assume all Februaries have 28 days). Note that you will have to be careful about things like integers and floats. For the month number entered, the program will ask you to enter the Fahrenheit temperature for the day (e.g., Enter the temperature in Fahrenheit for the date 2/1/2023). Your program will read in the Fahrenheit temperature and then print that value and the Celsius value with the date (e.g., For the date 2/1/2023, the temperature was 212 F which is 100C ). - Note: The only for-loop in this program will be for entering the temperature for each day of the month (based on totaldays, the variable used in 4 and 5 for the number of days in the month). - Set day equal to the number of days in the month entered (just like \#4 / \#5) - To convert from Fahrenheit to Celsius use the following equation in a separate line of code (not in a printf statement) ??C=(?F?32)×5/9 (DO NOT use a fractional part for 5/9 like 0.5556). - You will need to report the AVERAGE temperature in Celsius and Fahrenheit for all of the days of the month after all data is entered / calculated. - if-statements and if-else statements must NOT contain a break - use proper logic instead. HINT 1: You will only have ONE for-loop (opposed to three separate for-loops). HINT 2: Start with either Assignment 4 or 5 and then modify it to for this assignment.
1) Use variable for number of days Enter the month number and year \{e.g. 32000}. 22020 5 days in month Enter the Fahrenheit temperature for 2/1/2020. 68 On 2/1/2020 the temperature was 68.00 F and 20.00C. Averages are: 20.00C and 68.00 F Enter the Fahrenheit temperature for 2/2/2020. 20 On 2/2/2020 the temperature was 20.00 F and ?6.67C. Averages are: 6.67C and 44.00 F Enter the Fahrenheit temperature for 2/3/2020. ? Enter the month number and year \{e.g. 3 2000\}. 2020 days in month Enter the Fahrenheit temperature for 2/1/2020. 68 On 2/1/202? the temperature was 68.00 F and 20.00C. Averages are: 20.00C and 68.00 F Enter the Fahrenheit temperature for 2/2/2020. 20 On 2/2/2020 the temperature was 20.00 F and ?6.67C. Averages are: 6.67C and 44.00 F Enter the Fahrenheit temperature for 2/3/2020. On 2/3/2020 the temperature was 0.00 F and ?17.78C. Averages are: ?1.48C and 29.33 F Enter the Fahrenheit temperature for 2/4/2020. ?40 On 2/4/2020 the tenperature was ?40.00 F and ?40.00C. Averages are: ?11.11C and 12.00 F Enter the Fahrenheit temperature for 2/5/2020. ? On 2/5/202? the tenperature was 0.60 F and ?17.78C. Averages are: ?12.44C and 9.60 F (progran exited with code: 0 ) Press any key to continue 2) Temperatures are asked for each DATE until the number of days in the month selected are completed. Don't forget about reporting average temperatures! Enter the month number and year \{e.g. 3 2000\}. 22020 5 days in month Enter the Fahrenheit temperature for 2/1/2020. 68 On 2/1/2020 the temperature was 68.00 F and 20.00C. Averages are: 20.00C and 68.00 F Enter the Fahrenheit temperature for 2/2/2020. 20 On 2/2/2020 the temperature was 20.00 F and ?6.67C. Averages are: 6.67C and 44.00 F Enter the Fahrenheit temperature for 2/3/2020. (0) On 2/3/2020 the temperature was 0.00 F and ?17.78C. Averages are: ?1.48C and 29.33 F Enter the Fahrenheit temperature for 2/4/2020. ?40 On 2/4/2020 the temperature was ?40.00 F and ?40.00C. Averages are: ?11.11C and 12.00 F Enter the Fahrenheit temperature for 2/5/2020. 0 On 2/5/2020 the temperature was 0.00 F and ?17.78C. Averages are: ?12.44C and 9.60 F (program exited with code: ? ) Press any key to continue
// Declare variables. int counter, month, totalDays; //print assignment 5 printf ("assignment5\n \n "); ; //for loop to repeat four times. for (counter =1; counter <=4; counter ++ ) \{ // Tell the user to enter a month number printf("This is loop ?, please enter your month number: ", counter scanf ("\%d", \&month); switch (month) \{ case 1: case 3: case 5: case 7: case 8: case 10: case 12: totalDays =31 printf("You entered month number ?. This month has ?d days. \n", month, case 4: case 6: case 9: case 11: totalDays =30; printf("You entered month number ?. This month has ?d days. \n", month, case 2: totalDays =28; printf("You entered month number d. This month has ? days. \n", month, default:printf("Invalid month number.\n"); break; \} \} return 0 ; \}