eclipse能过 这个练习过不了。

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

我把手放兜里了_0_

2018-03-18 19:26


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

        

}

}


写回答 关注

4回答

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

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

    我把手放兜里...

    非常感谢!

    2018-03-29 20:05:51

    共 1 条回复 >

  • 慕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

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

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

1165172 学习 · 17581 问题

查看课程

相似问题