Question: Post in C programming! Prompt the user to enter the time of the day. The user should enter d for daytime and n for nighttime.

 Post in C programming! Prompt the user to enter the time

Post in C programming!

Prompt the user to enter the time of the day. The user should enter d for daytime and n for nighttime. Configure a boolean variable to store if it is daytime (true) or nighttime (false). Use the boolean variable to store if it is daytime or nighttime and print if the temperature is ideal if it needs to be raised if it needs to be lowered, and by how much. If a Boolean variable is not used, there will be a 20% grade penalty Ideal temperatures: Daytime 21.2C Nighttime: 18.3 C Sample Output Day (d) or Night (n)in Enter the current temperature:12 You need to raise the temperature by 6.3 degrees. Sample Output Day (d) or Night (n):d Enter the current temperature:21.2 The temperature is ideal. Sample Output Day (d) or Night (n)in Enter the current temperature:18.3 The temperature is ideal. Have a good night's sleep. Sample Output Day (d) or Night (n):d Enter the current temperature:25.5 You need to lower the temperature by 4.3 degrees. 301608.1764500 LAB ACTIVITY 17.6.1: Homework 2, P2: Ideal Temperatures 0/6 Downloadable files main.c Download main.c Load default template... #include #include #include #define IDEAL_AWAKE 21.2 // Ideal daytime temperature #define IDEAL_SLEEP 18.3 // ideal nightime temperature int main(void) { float current Temp; // temperature entered by user char userTime; // time of the day entered by user bool timeOfDay; // boolean var that holds if it is daytime (true) or nighttime (false) // Enter code here return 0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!