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

请教一下我这个编法的问题所在

我是这样写的

int one = 10 ;

        int two = 20 ;

        int three = 0 ;

         three=one+two;

         three+=one;

         three-=one;

         three*=one;

         three/=one;

        three%=one;

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

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

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

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

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

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

我这样写的话里面的three就恒是0 是不是一定要按照给的答案那样编写three才不会一直为0啊

恳请解答一下!

正在回答

1 回答

程序执行时从上到下的,假如你执行一句,就输出结果,那么就对了,因为变量的值时变的,要及时输出

比如:

        int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        three=one+two;

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

        three+=one;

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

        three-=one;

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

        three*=one;

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

        three/=one;

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

        three%=one;

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

         这样就对了,

这个是我写的(参考):

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

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

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

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

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

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

        


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

慕函数9227957 提问者

哦哦哦 非常感谢!
2017-02-08 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请教一下我这个编法的问题所在

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