I am \'obviously\' just learning programming and I can\'t seem to figure out what to do in order to get rid if this error. The error is on the second to the last line - the
The error indicates that you're missing a ) at the end of the line that starts
)
double windChill = (((35.41 + temperature...
You could also remove one of the ( at the beginning of the expression after the =, since it looks like not all of those are really needed.
(
=