问答详情
源自:3-3 Java中的赋值运算符

请问下我这哪里错了

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

                                            }

    }


        

        

        


提问者:猫味的橘子 2018-10-27 21:44

个回答

  • 二十岁0122
    2018-10-28 00:00:54

    代码没有问题,你是想问为什么最后输出结果为0吗?%是取余的意思,在最后一次输出中three的值为30,one的值为 10 取余为 0。