设有如下通用过程: Public Function Fun(xStr As String)As String Dim tStr As String.strL As Integer tStr=“”:strL=Len(xStr) i=strL/2 Do Whi

admin2019-06-11  33

问题 设有如下通用过程:
Public Function Fun(xStr As String)As String
Dim tStr As String.strL As Integer
tStr=“”:strL=Len(xStr)
i=strL/2
Do While i<=strL
tStr=tStr&Mid(xStr,i+1,1)
i=i+1
Loop
Fun=tStr&tStr
End Function
在窗体上画一个名称为Text1的文本框和一个名称为Command1的命令按钮。然后编写如下的事件过程:

选项 A、ABCDEF
B、abcdef  
C、defdef
D、defabc

答案C

解析 本题考查的考点是有关字符串处理的。本题中过程中的循环变量i的初值是字符串长度的一半,终值是字符串长度,结合循环中的取子串函数,整个循环的功能是取得字符串的后一半放入tstr中,然后连接上自身的值返回到调用程序。
转载请注明原文地址:https://kaotiyun.com/show/TxUp777K
0

相关试题推荐
最新回复(0)