问答详情
源自: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);

    }

}

        

        


提问者:慕UI1226964 2017-09-24 16:41

个回答

  • Jackchenv
    2017-10-08 16:49:04

    能运行的



  • qq_疯狂原始人_1
    2017-09-24 18:03:43

    能运行的啊!

  • 慕容5623013
    2017-09-24 17:51:10

    不用输出

  • 敲到爆为止
    2017-09-24 17:20:16

    为啥,我能运行。你的运行不了呢?

  • 绿万哥哥
    2017-09-24 17:16:11

    它要的输出是单独一个变量three,你这样输出是一个字符串"three = one + two ==>"再加一个变量three。