假定有定义: Dim C$,如果 当 C 中从第二个字符开始的子串是 "ABC" ,则 MsgBox 显示 "Yes" ,否则显示 "No", 下面 语句正确的是( )。
A.
If Mid(c, 2 ,3) = "ABC" Then MsgBox("Yes") Else MsgBox("No")
B.
If Mid(c, 2 ,3) = "ABC" Then MsgBox("Yes") : MsgBox("No")
C.
If Mid(c, 2 ,3) = "ABC" Then MsgBox("Yes") MsgBox("No")
D.
MsgBox("No") If Mid(c, 3 ,2) = "ABC" Then MsgBox("Yes")