Print a,b与Print a; b的区别?

问题描述:

Print a,b与Print a; b的区别?
1个回答 分类:综合 2014-11-21

问题解答:

我来补答
Dim a as string,b as string
a="123"
b="456"
Print a,b
print a;b
---------------
运行结果:
123 456
123456
-------------------------------------------
Dim a As Integer,b as Integer
a=123
b=456
print a,b
print a;b
----------------------
运行结果:
123 456
123 456
-----------------------------------
Dim a As Integer,b as Integer
a=-123
b=-456
print a,b
print a;b
----------------------
运行结果:
123 456
-123-456
明白不 ?
我打完才看到,原来没有悬赏分...^-^
 
 
展开全文阅读
剩余:2000
上一页:减术分裂
下一页:语文学习与巩固