有如下程序段: Dim str As String * 10 Dim i Str1=“abcdefg” i=12 len1=Len(i) str2=Right(str1,4) 执行后,len1和str

admin2010-01-05  16

问题 有如下程序段:     Dim str As String * 10     Dim i     Str1=“abcdefg”     i=12     len1=Len(i)     str2=Right(str1,4)     执行后,len1和str2的返回值分别是

选项 A、12,abcd
B、10,bcde
C、2,defg
D、0,cdef

答案4

解析 Len( )是字符串长度检测函数,i=12所以字符串长度为2。Right( <字符串表达式>,<N1> )从字符串右起取N1个字符。
转载请注明原文地址:https://jikaoti.com/ti/pIP0FFFM
0

最新回复(0)