Question: * * * * C Language Please * * * * Dew Point Calculator This project will primarily require scanf ( ) and printf (

**** C Language Please ****
Dew Point Calculator
This project will primarily require scanf() and printf() and a few float variables.
We will use float instead of int variables for this project (3 examples below).
float DewPoint =0.0;
float AirTemperature =0.0;
float RelativeHumidity =0.0;
Minimum requirements for grading. Your .c file must have your name, date and the assignment name at the top in comments as a header. Submissions missing these items will not be accepted for grading. Please leave a few code comments throughout documenting major steps.
You must use descriptive variable names. Large point penalty for cryptic or single character variable names.
Your task is to create a C program that calculates the current dew point. Please follow my example below exactly. User input is highlighted in orange. Output will vary based on those values input from the user. Make sure to TEST your program thoroughly. Don't forget the required code comments.
Hint: Here is a formula with some variable names you could consider using.
DewPoint = AirTemperature -((100- RelativeHumidity)/5)It is another hot Oklahoma Summer!
Welcome to the Dew Point Calculator Program.
Dew point directly coorelates to how comfortable it is outside.
Please enter current temperature in Degree Fahrenheit (example 81.0): 81
Please enter the current relatative humidity percentage (example 84.0): 84
The dew point is 76 degrees fahrenheit.
Hints:
Here is a formula - DewPoint = AirTemperature -((100- RelativeHumidity))
Don't worry about rounding you can show as many decimal places as you would like
* * * * C Language Please * * * * Dew Point

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 Finance Questions!