Private Sub Form_Click()
Dim a As Integer, b As Integer, c As Integer
Dim str As String
Let a = 54
Let b = 114
c = a + b
str = "Hello World"
Print "a="; a, "b="; b, "c="; c
Print str
End Sub
※※※
"a="; a, "b="; b, "c="; c 中的标点都分别是什么意思 是么时候使用这些
还有Print "a="; a, "b="; b, "c="; c 与Print str为什么不可以写在同一个Print下呢? 为什么要设成str呢 它又是什么意思?
可能这些问题很弱智。。。别嫌弃啊。。。我真的刚开始学。。。知道的哥哥姐姐叔叔阿姨教教我 O(∩_∩)O谢谢!
Dim a As Integer, b As Integer, c As Integer
Dim str As String
Let a = 54
Let b = 114
c = a + b
str = "Hello World"
Print "a="; a, "b="; b, "c="; c
Print str
End Sub
※※※
"a="; a, "b="; b, "c="; c 中的标点都分别是什么意思 是么时候使用这些
还有Print "a="; a, "b="; b, "c="; c 与Print str为什么不可以写在同一个Print下呢? 为什么要设成str呢 它又是什么意思?
可能这些问题很弱智。。。别嫌弃啊。。。我真的刚开始学。。。知道的哥哥姐姐叔叔阿姨教教我 O(∩_∩)O谢谢!