Home / Expert Answers / Computer Science / write-the-following-program-in-c-geany-the-output-should-look-like-assignment-5-for-reference-det-pa481

(Solved): Write the following program in C (Geany) The output should look like:Assignment 5 for reference (det ...



Write the following program in C (Geany)

student submitted image, transcription available below

The output should look like:

student submitted image, transcription available below

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

student submitted image, transcription available below
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 , the temperature was 212 which is ). - 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) (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 . 68 On the temperature was and . Averages are: and Enter the Fahrenheit temperature for . 20 On the temperature was and . Averages are: and Enter the Fahrenheit temperature for . Enter the month number and year \{e.g. 3 2000\}. 2020 days in month Enter the Fahrenheit temperature for . 68 On the temperature was and . Averages are: and Enter the Fahrenheit temperature for 2/2/2020. 20 On the temperature was and . Averages are: and Enter the Fahrenheit temperature for 2/3/2020. On the temperature was and . Averages are: and Enter the Fahrenheit temperature for . On the tenperature was and . Averages are: and Enter the Fahrenheit temperature for . On the tenperature was and . Averages are: and (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 the temperature was and . Averages are: and Enter the Fahrenheit temperature for . 20 On the temperature was and . Averages are: and Enter the Fahrenheit temperature for . (0) On the temperature was and . Averages are: and Enter the Fahrenheit temperature for 2/4/2020. On the temperature was and . Averages are: and Enter the Fahrenheit temperature for . 0 On the temperature was and . Averages are: and (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 ; counter ; 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 printf("You entered month number ?. This month has ?d days. \n", month, case 4: case 6: case 9: case 11: totalDays ; printf("You entered month number ?. This month has ?d days. \n", month, case 2: totalDays ; printf("You entered month number d. This month has ? days. \n", month, default:printf("Invalid month number.\n"); break; \} \} return 0 ; \}


We have an Answer from Expert

View Expert Answer

Expert Answer


We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe