Dim name(100) As String
Public Function add(n As String, s As Integer)
    name(1) = n
End Function上面这段代码写到一个模块中了,但是编译器总是提示少As,请问上面的代码有什么问题?