哪里有问题呢

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

qq_灬说谎人丿_0

2018-05-31 22:00

 int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        three = one + two ;

        Systeam.out.println("three = one + two ==>"+three);

        three += one ;

        Syeteam.out.println("three += one ==>"+three);

        three -= one ;

        Systeam.out.println("three -= one ==>"+three);

        three *= one ;

        Systeam.out.println("three *= one ==>"+three);

        three /= one ;

        Systeam.out.println("three /= one ==>"+three);

        three %= one ;

        Systeam.out.println("three %= one ==>"+three);

        


写回答 关注

3回答

  • 贰玖_
    2018-05-31 22:20:56
    已采纳

    所有的System都错误的打成了Systeam

    qq_灬说谎...

    非常感谢!

    2018-06-06 20:31:31

    共 1 条回复 >

  • onmyoji
    2018-07-26 23:43:09

    可能是steam玩多了

  • 千寻街
    2018-06-01 00:43:56

    可能是steam玩多了


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

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

1165172 学习 · 17581 问题

查看课程

相似问题