我这样写有什么问题吗?怎么通过不了

来源:3-3 Java中的赋值运算符

慕UI1226964

2017-09-24 16:41

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);

    }

}

        

        


写回答 关注

5回答

  • 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

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

    慕UI122...

    对啊,我很无语,明明没有错

    2017-09-24 17:21:54

    共 1 条回复 >

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

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

    绿万哥哥 回复慕UI122...

    不是,我的意思它要你输出单独一个three就行了,所以你吧前面的字符串删了就ok

    2017-10-20 14:52:42

    共 2 条回复 >

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题