请填空,使程序段完成相应计算。 程序段的功能是:当x取值5到10,或取值大于20时,输出一串"*";x取其他值时,输出一串"#"。X为整型数据。 Select Case x ( ) Print "**********" Case Else Print "############" End Select
A.Case 5-10,x>20
B.Case 5,6,7,8,9,10,is>20
C.Case 5,6,7,8,9,10,x is>20
D.Case 5 To 10,x>20
正确答案是B