Question: Define six variables of appropriate data type and assign them the following values: 3 5 . 5 , 3 0 . 5 , 2 2
Define six variables of appropriate data type and assign them the following values: notice this last value is negative one
Write a function that will accept a decimal value representing the Celsius temperature, convert the value to Fahrenheit, and return that Fahrenheit value as a rounded integer value.
Hint : The formula to convert from C to F is TempF TempC Hint : An easy way to round integer values is to add to the decimal value before converting it to integer.
Write a function that will accept an integer value representing the temperature in Fahrenheit. The function will check the value and determine the correct weather statement to return as a string value. The criteria for these statements are as follows:
F A heat advisory has been issued.F to F Pleasant but warm.F to F Very pleasant weather today.F to F Pleasant but cool.F to F Cold weather.F A freeze warning has been issued.
For each test variable, call the conversion function followed by a call to the weather statement function. After each call, display to the console the temperature in Celsius and in Fahrenheit followed by the appropriate weather statement as determined by the function.
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
