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

关于赋值运算覆盖之前的值问题

这是我的代码,我是直接让three的值打印出来,没有像标准答案一样先定义再打印也会覆盖之前three的值吗?因为我有点python的基础,这个和python差的有点远,所以不大好接受。


public static void main(String[] args) {

        int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        System.out.println(three=one+two);

        System.out.println(three += one);

        System.out.println(three -= one);

        System.out.println(three *= one);

        System.out.println(three /= one);

        System.out.println(three %= one);


正在回答

2 回答

30

40

30

300

30

0

答案

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

举报

0/150
提交
取消

关于赋值运算覆盖之前的值问题

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