问答详情
源自:3-3 Java中的赋值运算符

为什么运行出来有错误

public class HelloWorld{

    public static void main(String[] args) {

   int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        three=one+two;

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

        three+=one;

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

        three-=one;

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

        three*=one;

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

        three/=one;

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

        three%=one;

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

        

}

}

右边显示6 errors

提问者:不想再做设计的阿碳 2016-01-08 12:42

个回答

  • IMOOCER_Vi
    2016-01-08 12:49:19
    已采纳

    兄弟,你的System都没有写对啊(System.out.println被你写成了 Syetem.out.println),写代码的时候注意细节哦。如果你用eclipse写的话马上就会提醒你这个错误的

  • qq_宋辉_0
    2016-01-08 15:52:08

    你写的时候不会报错吗


  • qq_Hh
    2016-01-08 12:51:15

    System.out.println