在窗體上畫一個名稱為Command1的命令按鈕,一個名稱為Label1的標簽,然后編寫如下的事件過程: Private Sub Command1_Click() s = 0 For i = 0 To 15 X = 2 * i - 1 If X Mod 3 = 0 Then s = s + 1 Next i Label1.Caption = s End Sub 程序運行后,單擊命令按鈕,則標簽中顯示的內(nèi)容為()
A.1 B.5 C.27 D.45
下列程序執(zhí)行的結果為() x=-62 PrintSgn(x)+Abs(x)+Int(x)
A.-36 B.1 C.-1 D.-72
以下語句的輸出結果是(注:■表示一個空格)() a=123 b=456 Printa;b
A.123■456 B.■123■456 C.■123■456■ D.■123■■456