java中的赋值运算符,帮我看看。总感觉不对

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

工号9527是我终身编号

2016-08-19 19:38

public class HelloWorld{

    public static void main(String[] args) {

   int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        int three=one+two==>30;

        int three+=one==>40;

        int three-=one==>30;

        int three*+one==>300;

        int three/=one==>30;

        int three%/==>0


应用运算符实现:

        int three=one+two==>30;

        int three+=one==>40;

        int three-=one==>30;

        int three*+one==>300;

        int three/=one==>30;

        int three%/==>0

    

我很奇怪,总感觉不对。但是已经同过了测试题到底是什么回事?

    


写回答 关注

2回答

  • JustWannaHugU
    2016-08-19 20:16:47

    同学,==》不是运算符,它是提形象化的指示符号,应该写在“ ”里面

    这段代码应该这样写

    http://img.mukewang.com/57b6f8a00001e76605530360.jpg

    方便请采纳

  • 慕粉3846329
    2016-08-19 19:51:36

    该节编程练习不验证代码,要看输出里面有没有错误

    慕粉3846... 回复工号9527...

    以后的测试题都不再验证写的代码对不对了,最好提交后输出栏有没有理想的输出结果,如果输出结果不是你想要的,就代表写的代码不对;

    2016-09-01 11:30:24

    共 3 条回复 >

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

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

1165628 学习 · 17587 问题

查看课程

相似问题