VB 6.0 If x Then Print x Else Print x + 1

问题描述:

VB 6.0 If x Then Print x Else Print x + 1
Dim x
If x Then Print x Else Print x + 1
输出结果是1

如果x大于0的时候条件成立,所以输出x的值,否则的话x就0了,输出的结果是0+1=1.比如:dim xif x then print x else Print x (结果0)dim xx=2if x then print x else Print x+1 (结果2)dim xif x then print x else Pri...