单项选择题
A.Print arr.Code(2),arr.Caption(2) B.Print arr.Code,arr.Caption C.Print arr(2).Code,arr(2).Caption D.Print Code(2),Caption(2)
A.13+23+33+…103的值 B.10!+…+3!+2!+1!的值 C.(1+2+3+…+10)3的值 D.10个103的和
A.Private Sub P1_MouseMove(Button As Integer,Shift As Integer,X As Single,Y As Single) <br>Print X,Y<br> End Sub B.Private Sub P1_MouseDown(Button As Integer,Shift As Integer,X As Single,Y As Single)<br>Picture.Print X,Y<br> End Sub C.Private Sub P1_MouseMove(Button As Integer,Shift As Integer,X As Single,Y As Single)<br>P1.Print X,Y<br> End Sub D.Private Sub Form_MouseMove(Button As Integer,Shift As Integer,x As Single,Y As Single) <br>P1.Print X,Y<br> End Sub