在VB中,可以使用Print语句来输出变量的值。下面是一个示例代码,展示如何使用Print语句输出abc三个变量的值:
vb
Dim a As Integer
Dim b As Double
Dim c As String
a = 10
b =
3.14
c = "Hello, World!"
Print "a = " & a
Print "b = " & b
Print "c = " & c
在上面的代码中,我们声明了三个变量a、b和c,并分别赋予了它们整型、浮点型和字符串类型的值。
然后,我们使用Print语句将变量的值输出到控制台。在Print语句中,我们使用字符串连接符&将变量的值与字符串拼接起来,以便在输出中显示变量的名称和值。
运行上述代码后,将会在控制台上输出以下内容:
makefile
a = 10
b =
3.14
c = Hello, World!
string.format(“%d,%d%d”,a,b,c)