单选题
下列程序执行后,在Ctrl和Alt这两个键都被按下的同时,再在文本框中输入"a",输出结果为________。
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
If Shift > 0 And KeyCode >= Asc("A")Then
Print KeyCode + Shift
End If
End Sub
A、
65
B、
71
C、
0
D、
出错
【正确答案】
B
【答案解析】
提交答案
关闭