[單項選擇題] 下列程序的執(zhí)行結果為( )。 Private Sub Command1_Click() Dim s1 As String,s2 As
2021-07-20
[單項選擇題] 下列程序的執(zhí)行結果為( )。
Private Sub Command1_Click()
Dim s1 As String,s2 As String
s1="abcdef"
Call Invert(s1,s2)
Print s2
End Sub
Private Sub Invert(ByVal xstr As String,ystr As String)
Dim tempstr As String
i=Len(xstr)
Do While i>=1
tempstr=tempstr+Mid(xstr,i,1)
i=i-1
Loop
ystr=tempstr
End Sub
A.fedcba
B.a(chǎn)bcdef
C.a(chǎn)fbecd
D.defabc
正確答案:A
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域?qū)I(yè)人士。