Write a conditional that assigns 10,000 to the variable bonus if the value of the variable goodsSold is greater than 500,000.
.
.
Click on the title for the solution
.
.
.
Click on the title for the solution
.
.
This is the answer:
:
if (goodsSold>500000) bonus=10000;
Comments
Post a Comment