窗體上有一個(gè)命令按鈕Command1編寫(xiě)如下事件過(guò)程 Private Sub Command1_Click() x=InputBox("x=") y=InputBox("y=") Print x+y End Sub 運(yùn)行后單擊命令按鈕先后在兩個(gè)輸入對(duì)話(huà)框中輸入123和321窗體顯示的內(nèi)容是()。
A.444 B.123321 C.123+321 D.出錯(cuò)信息
下列程序運(yùn)行時(shí),消息框顯示的內(nèi)容是()。 Private Sub Command1_Click() MsgBox CStr(123+321) End Sub
A.444 B.123321 C.123+321 D.顯示出錯(cuò)信息
下列語(yǔ)句組 a$="Today And Tomorrow" b$=Right(a$,8):c$=Left(a$,5) MsgBox a$,,b$,c$ 執(zhí)行后消息框中顯示的內(nèi)容是()。
A.Today B.Tomorrow C.Today And Tomorrow D.1