Math.pow errors in Java

后端 未结 5 1982
天涯浪人
天涯浪人 2021-01-19 04:02

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

5条回答
  •  粉色の甜心
    2021-01-19 04:12

    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.

提交回复
热议问题