就是啊   为什么不加 int

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

蒲公英521

2016-07-08 15:05

public class HelloWorld{

    public static void main(String[] args) {

   int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        there=one+two;

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

        there+=one;

        System.out.println(there+=one==>there);

        there-=one;

        System.out.println(there-=one==>there);

        there*=one;

        System.out.println(there*=one==>there);

        there/=one;

        System.out.println(there/=one==>there);

        there%=one;

        System.out.println(there%=one==>there);                                                                                                                                                                                                                                                                                                                      

        

        

        

    

}

}


写回答 关注

2回答

  • 小糊鱼
    2016-07-08 15:15:59
    已采纳

    three 前面的int吗  因为之前已经定义过变量类型 one two three 变量类型都是int 不需要再定义直接赋值就可以啦

    蒲公英521

    非常感谢!

    2016-07-10 15:08:31

    共 1 条回复 >

  • jack_zhang2016
    2016-07-08 15:16:35

    被你误解了,应该是three,不算there。one, two, three~~~

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

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

1165171 学习 · 17581 问题

查看课程

相似问题