Question: Explain why you cannot convert the following if-else-if statement into a switch statement. if (temp == 100) x = 0; else if (population > 1000)
Explain why you cannot convert the following if-else-if statement into a switch statement.
if (temp == 100)
x = 0;
else if (population > 1000)
x = 1;
else if (rate < .1)
x = -1;
Step by Step Solution
3.40 Rating (162 Votes )
There are 3 Steps involved in it
The variable temp will block the flow of execution to only code ... View full answer
Get step-by-step solutions from verified subject matter experts
