Write a conditional that assigns true to the variable fever is the variable termperature is greater than 98.6.

LANGUAGE: Visual Basic

CHALLENGE:

Write a conditional that assigns true to the variable fever is the variable termperature is greater than 98.6.

SOLUTION:

If (temperature > 98.6) Then
    fever = true
End If