题型:综合题 题类:常考题 难易度:困难
浙江省台州市书生中学2017-2018学年高二上学期信息技术第三次月考试卷
Private Sub Command1_Click()
Dim f As String, x As String, y As String
x = Text1.Text
y = Text2.Text
f = ""
If Len(x) <> Len(y) Then
Text1.Text = "请输入符合要求的字符串!"
Text2.Text = "请输入符合要求的字符串!"
Else
For i = 1 To Len(x)
If Then
f = f + Mid(y, i, 1)
Else
f = f + Mid(x, i, 1)
End If
Next i
Text3.Text = f
End Sub
试题篮