public class lianxi2{ public static void main(String[] args) { int one = 10 ; int two = 20 ; int three = 0 ; three=one+two; System.out.println("three=one+two==>"+three); three+=one; System.out.println("three+=one==>"+three); }}中的第一个three=0 这个是什么意思?
6 回答
大咪
TA贡献785条经验 获得超332个赞
举个例子,就相当于和语文中的前缀一样。。。。给后面three做个铺垫,做个解释,每个变量都需要设置一个类型,这样把变量初始化,所以three要先int一下,让他等于0,或者int three这样也行。
添加回答
举报
0/150
提交
取消