00:03
Okay, looks like they want us to measure perceived coldness.
00:08
You may have seen this problem in multivariable calculus.
00:12
Maybe you will see it soon in the future.
00:14
Let's see.
00:18
So they want us to calculate a measure of coldness, calculate coldness as our, let's see, in the chill index, going to using, let's see, we're going to take in temperature, and wind speed.
00:49
What do we need to do? we need to prompt the user for temperature.
00:56
We're going to need to calculate in the chill index using the formula they give us.
01:03
Then we're going to need to display to the user.
01:08
This is definitely all we need because they even give us a sample and they tell us specifically how the program should run, what we should say.
01:15
So let's see.
01:17
When we get the temperature from the user, first off, we should remember that, when we get input, we're going to get strings.
01:28
So i need to turn string input from the console into numbers.
01:33
So what we're going to do is call e -vile on any input.
01:37
And how are we going to ask for the input? let's see.
01:39
They specifically say, enter the temperature in fahrenheit.
01:44
So they tell the user that they need to have already computed it as fahrenheit.
01:50
And they tell us it only work.
01:51
And they tell the user for the range negative 58 and 41.
01:55
So the formula may not work outside that.
01:59
Good thing the user is...
02:02
And now let's see...