Dim t As Integer, a As Boolean Dim p As Integer, b, w As Boolean, one 是什么意思啊???
Dim t As Integer, a As Boolean Dim p As Integer, b, w As Boolean, one 是什么意思啊???
日期:2016-11-16 04:59:15 人气:1
Dim t As Integer, a As Boolean 定义t为整型变量 a为布尔变量
Dim p As Integer, b, w As Boolean, 定义p为整型变量 b(应该是类型不确定,不能存放数据) ,w为布尔变量
以上应该是VB的语句,定义变量