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

eclipse能过 这个练习过不了。


public class three18 {

    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_ 2018-03-18 19:26

个回答

  • 慕莱坞6136724
    2018-03-19 20:29:27
    已采纳

    第一行错了,把public class three18改为public class HelloWorld就行了,因为class后面的HelloWorld要与Java的文件名相同,题目默认是Helloworld.java.

  • 慕UI0007637
    2018-03-19 16:17:11

    我也是卡在这里

  • 慕婉清9574617
    2018-03-18 21:34:27

    000

  • carl_0006
    2018-03-18 21:00:58

    public class three18   你的这个类  three18 是什么鬼,题目里默认的是 HelloWorld