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

一直错啊。。。。。找不到原因

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

        

        

}

}


正在回答

6 回答

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

    System.out.println(three+=one);

    System.out.println(three-=one);

    System.out.println(three*=one);

    System.out.println(three/=one);

    System.out.println(three%=one);  


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

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

应该是 System.out.println("three%=one==>"+three);

的吧

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

你的符号全是错了,改一下吧

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

多了一个等于号

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

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

        

        

}

}


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

举报

0/150
提交
取消

一直错啊。。。。。找不到原因

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