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

怎么样让three+=one;打印的值以three=0为基础,而不是30.

 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+=one;打印的值以three=0为基础从而输出10,而不是40.

正在回答

2 回答

public class HelloWorld{

    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 = three+=one;

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

                    three = three-=one;

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

                        three = three*=one; 

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

                            three = three/=one;

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

                                three = three%=one;

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

    }

}


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

 int one = 10 ;

        int two = 20 ;

        int three = 0;

        three=one+two;(改一下int a=one+two;)

         System.out.println("three = one + two ==>  "+three);(相应的这边对应为a)

        three+=one;(此时设int b=a+one=one+two+one=40,three+=one=0

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


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

劉3535446 提问者

没有理解你的意思,但是我想到可以在three+=one下面加一行three=0给three重新赋值。
2022-08-20 回复 有任何疑惑可以回复我~
#2

劉3535446 提问者 回复 劉3535446 提问者

打错了,在three+=one上面一行加
2022-08-20 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

怎么样让three+=one;打印的值以three=0为基础,而不是30.

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