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 examples below
float DewPoint ;
float AirTemperature ;
float RelativeHumidity ;
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 RelativeHumidityIt 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 :
Please enter the current relatative humidity percentage example :
The dew point is degrees fahrenheit.
Hints:
Here is a formula DewPoint AirTemperature RelativeHumidity
Don't worry about rounding you can show as many decimal places as you would like
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
