下面程序段運行,輸入2,-1后,輸出 。 Dim x,y As Integer x =Val(InputBox("請輸入數(shù)據(jù)")) y = Val(InputBox("請輸入數(shù)據(jù)")) If x > 0 Then If y > 0 Then MsgBox("第一象限") Else MsgBox("第四象限") End If Else If y > 0 Then MsgBox("第二象限") Else MsgBox("第三象限") End If End If
A、第一象限 B、第二象限 C、第三象限 D、第四象限