Private Sub Command1_Click()
    Dim st$, ch$
    Open App.Path & "\in3.txt" For Input As #1
    Do While Not EOF(1)
        Input #1, ch
'        st = ? & ch
    Loop
    Close #1
    Text1 = st
End Sub
Private Sub Command2_Click()
    Dim st$, word$, c$
    st = Text1
    n = Len(st)
    For k = 1 To n
'        ? = Mid(st, k, 1)
        If c <> " " Then
            word = word & c
        Else
            List1.AddItem word
'            ? = ""
        End If
    Next
    List1.AddItem word
End Sub

发布于 2022-05-11 10:13:27

登录后免费查看答案
关注者
0
被浏览
25
1 个回答
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看