为了账号安全,请及时绑定邮箱和手机立即绑定

three=one+two;有什么用?

public class HelloWorld{

    public static void main(String[] args) {

   int one = 10 ;

        int two = 20 ;

        int three = 0 ;

     

        System.out.println("three+=one==>"+40);

        System.out.println("three-=one==>"+30);

        System.out.println("three*=one==>"+300);

同样可以输出

three+=one==>40
three-=one==>30
three*=one==>300

正在回答

2 回答

这是运算得出来的结果,three是一个变量,而不是常量,变量值可以重新被覆盖的。

0 回复 有任何疑惑可以回复我~

那是因为输出的就是40;30;300;  你把这些数分别换成three+=one;three-=one;three*=one;试试,

0 回复 有任何疑惑可以回复我~
#1

Flzz 回复 昊宸丨 提问者

跟那些没关系,+号后面就是输出的值,你自己打个+30,输出的就是30,跟你three的值并没有关系,three的值仍然是0
2017-07-27 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

three=one+two;有什么用?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信