Write a conditional that decreases the variable shelfLife by 4 if the variable outsideTemperature is greater than 90.
.
.
Click on the title for the solution
.
.
.
Click on the title for the solution
.
.
This is the answer:
:
if (outsideTemperature>90) shelfLife-=4;
Comments
Post a Comment