为了账号安全,请及时绑定邮箱和手机立即绑定

请问==>符号是什么意思,我的代码出来的结果为何通过不了呢?

public class HelloWorld{

    public static void main(String[] args) {

    int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        int three1 = one + two ;

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

        int three2 += one ;

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

        int three3 -= one ;

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

        int three4 *= one ;

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

        int three5 /= one ;

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

        int three6 %= one ;

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

        

}

}


正在回答

1 回答

“==>”这个符号没有意义,只是自己随便一个辅助箭头,http://img1.sycdn.imooc.com//5e81ccb9000149e405490413.jpg

你可以这样写只输出一个three变量,每一行按three += one; System.out.println(three);这样的形式就可以了


1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请问==>符号是什么意思,我的代码出来的结果为何通过不了呢?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信