ow do I design an if-then-else statement that assigns 0 to the variable b if the variable a is less than 10. Otherwise, it should assign 99 to the variable b.
![]() |
ow do I design an if-then-else statement that assigns 0 to the variable b if the variable a is less than 10. Otherwise, it should assign 99 to the variable b.
Depends on the language but in psudo code:
If a < 10 then
b = 0
Else
b = 99
End If
| All times are GMT -7. The time now is 10:49 PM. |