What is a "Select Case" Statement in QBASIC Programming language?
Answers
Answered by
1
Select-Case statements work like If statements. ... Creating a Select-Case statement is simple to do. The next program will prompt the user to select the key A-D and the program will respond by telling the user what key was entered. We will create a Select-Case statement for the A-D keys entered.
Answered by
2
Answer:
A Select Case statement allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each select case.
Similar questions