問題詳情

33.若要下列VB程式執行結果為9876M321 (string reverse),則空格部份應填入
(A) s & Right(s,i+1)
(B) t & Mid(s,i,l)
(C)t & Left(s'i)
(D)t & s。Private Sub Commandl一Click() s = "123456789"For i = Len(s) To 1 Step -1t=_Next i Print t End Sub

參考答案

答案:B
難度:困難0.333333
統計:A(2),B(5),C(4),D(1),E(0)