VB 6.0 If x Then Print x Else Print x + 1
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/10 15:01:54
VB 6.0 If x Then Print x Else Print x + 1
Dim x
If x Then Print x Else Print x + 1
输出结果是1
Dim x
If x Then Print x Else Print x + 1
输出结果是1
如果x大于0的时候条件成立,所以输出x的值,否则的话x就0了,输出的结果是0+1=1.
比如:
dim x
if x then print x else Print x (结果0)
dim x
x=2
if x then print x else Print x+1 (结果2)
dim x
if x then print x else Print x+1 (结果1)
dim x
x=1
if x then print x+1 else Print x (结果2)
够不?
比如:
dim x
if x then print x else Print x (结果0)
dim x
x=2
if x then print x else Print x+1 (结果2)
dim x
if x then print x else Print x+1 (结果1)
dim x
x=1
if x then print x+1 else Print x (结果2)
够不?
VB 6.0 If x Then Print x Else Print x + 1
VB中 Dim x If x then print x else print x+1结果是什么请指
VB中判断奇偶 y=IIf(x mod 2,1,0) If y Then Print "奇数" Else Print "
VB程序:Dim x If x Then Print x Else Print x+2 为什么答案等于2?
Dim x%:If x Then y = x Else y = x + 1:Print y为什么结果是1?
X=5 y=-20 If not x>0 then x=y-3 else y=x+3 print x-y;y-x end
x=1 do print x.x=x*2 loop until x>20 print x 输出结果 VB
x=5 y=-20 IFx<0 THEN x=y-3 ELSE y=y+3 END IF PRINT x-y;y-x E
指出下列语句的错误(1)If x>=y Then Print x (2)If 10
if x>y then print y end if 怎么错了
VB 下列程序段的执行结果为 X=2 Print X+1;X+1
为什么x.print()结果是4