已采纳回答 / 好帮手慕珊
基本数据类型的boolean开头字母小写,在java中,和基本数据类型对应的还有一个包装器类Boolean,也可以写成Boolean bool=true;这种形式,但Boolean是类,意义不一样,这在后面的课程中会学习。
2015-06-16
已采纳回答 / chavin
three = one + two ==>30; three += one ==> 40; three -= one ==> 30; three *= one ==> 300; three /= one ==> 30; three %= one ==> 0;这些代码不对,语法不正确, 举个例子说明一下: three = one + two ==>30; 这一个是输出结果,是自...
2015-06-14