Answer:
If(temperature>98.6) // checking the condition
{
fever=true // assigned the true value in the fever variable
}
else
{
fever=false // assigned the false value in the fever variable
}
Explanation:
Following is the description of statement
- In the given problem we used if/else statement block.The if block is when there condition is true otherwise it executed the else block.
- In the above answer, we check the condition of "temperature" variable in the if block .
- If the condition of " temperature" variable is greater than 98.6 then it assigns the true value in the "fever" variable otherwise control goes to else block and executed the statement inside the else block i.e assigned the false value in the "fever" variable.