【下面代码黑体有标出】为什么初始化three等于0之后,只能显示“three=one+two==>30”但是更改为int three=one+two 之后就可以全部都显示出来了?

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

才不是蠢鱼

2017-08-25 16:53

 int one = 10 ;
        int two = 20 ;
        int three=one+two;//这样子是可以的,但是改成两步: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);
   



写回答 关注

5回答

  • 大饼蓝
    2017-08-25 17:38:40
    已采纳

    你的第一种写法int three=one+two,这样写虽然能够实现出来,在慕课网的编辑器中看不出来问题。但在eclipse中会有警告提示。所以这种写法是不对的,这样写的话变量three的值是不被使用的,这样就没有意义了。

    大饼蓝 回复大饼蓝

    兄弟,抱歉,没搞清楚情况,说错了。你的两种写法都是对的,可以实现的,在Eclipse中都可以实现出来而且没有警告提示,注意把该加的符号加上,仔细检查符号状态是不是英文输入的就行。

    2017-08-28 18:35:59

    共 3 条回复 >

  • 才不是蠢鱼
    2017-08-26 13:19:35

    我重新按照你的来弄了一遍,得到的输出是这样的

    three = one + two ==>30<br/>three += one ==>40<br/>three -= one ==>30<br/>three *= one ==>300<br/>three /= one ==>30<br/>three %= one ==>0<br/>

    应该要怎么样才能去掉<br/>呢?

    才不是蠢鱼 回复慕工程357...

    好的,谢谢(。・ω・。)ノ♡

    2017-09-08 14:49:11

    共 2 条回复 >

  • qq_Getoverit_0
    2017-08-26 09:24:17

    我这样写的,是没问题的。

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

    qq_Get... 回复才不是蠢鱼

    这个我也不太清楚

    2017-08-26 16:54:51

    共 3 条回复 >

  • 大饼蓝
    2017-08-25 17:33:24

    貌似同一个类型&&同一个变量,不能被连续分别赋值。

  • 面朝大海2016
    2017-08-25 17:15:38

    我试过了这么写也没错,不行你就试着不要改动他原来的代码,把three的运算写在println后面的括号里面。

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

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

1165172 学习 · 17581 问题

查看课程

相似问题