填空题

运行下面程序,其输出结果(str2的值)为 【13】
Dim str1,str2 As String
Dim i As Integer
str1="abcdef"
For i=1 To Len(str1)Step2
str2=UCase(Mid(str1,i,1))+str2
Next
MsgBox str2

【参考答案】

ECA