单项选择题

A.If "A"<=Text1.Text <="E"Then MsgBox "输入正确"Else MsgBox "输入错误"
B.If A <=Text1.Text <=E Then MsgBox "输入正确"Else MsgBox "输入错误"
C.If "A"<=Text1.Text Or Text1.Text <="E"Then MsgBox "输入正确"Else MsgBox "输入错误"
D.If A <=Text1.Text Or Text1.Text <=E Then MsgBox "输入正确"Else MsgBox "输入错误"
E.If "A"<=Text1.Text And Text1.Text <="E"Then MsgBox "输入正确"Else MsgBox "输入错误"
F.If A <=Text1.Text And Text1.Text <=E Then MsgBox "输入正确"Else MsgBox "输入错误"