题目内容:
在窗体上画1个名称为Command1的命令按钮,并编写以下程序Private Sub Command1_Click()
Print fun(“ABCDEFG”)
End Sub
Function fun(st As String)As String
stlen=Len(st)
temp=“”
For k=l To stlen/2
temp=temp+Mid(st,k,1)+Mid(st,stlen-k+1,1)
Next k
fun=temp
End Function
程序运行时,单击命令按钮,则在窗体上显示的是 ( ) A.ABCDEFG
B.AGBFCE
C.GFEDCBA
D.AGBFCED
参考答案:
答案解析: