Using Visual Basic IDE
Please help me answer the following question
Write an(one)If...Then...ElseIf statement that determines a speed (intSpeed) and displays an appropriate message in the lblMessage label for each speed. It should:
If the variable intSpeed is within the range 0 through 49 (inclusive) that prints the message: The speed is too slow.
If the variable intSpeed is within the range 50 through 75 (inclusive) that prints the message: The speed is right.
If the variable intSpeed is over 76 (inclusive) that prints the message: The speed is too fast.
If the variable intSpeed is out of the range that prints the message: The speed is invalid.