VB中如何理解: dim a,b,t As Integer和Print"a=";a
VB中如何理解: dim a,b,t As Integer和Print"a=";a
日期:2008-07-01 15:22:22 人气:1
注意:
在vb6里,dim a,b,t As Integer 只是定义t是整型, a b 都是变体类型。
vb.net 可以这样写
Print"a=";a 在屏幕上输出字符串 a=和a的值,比如a=3,则输出
a=3
VB中如何理解: dim a,b,t As Integer和Print"a=";a