问答详情
源自:2-11 Java常量的应用

在Eclipse中可以运行出来在这里怎么不行呢

在Eclipse中可以运行出来在这里怎么不行呢 public class HelloWorld{    public static void main(String[] args) {       final String sex1 = "女";       final String sex2 = "男";       System.out.println(sex1);       System.out.println(sex2); } }

提问者:慕粉4197531 2016-11-28 20:25

个回答

  • 无切w
    2016-12-02 08:17:40

    public class HelloWorld{    

    public static void main(String[] args) {      

     final char sex1 = "女";       

     final char sex2 = "男";       

     System.out.println(sex1);       

    System.out.println(sex2); 

       }

     }

    你得按照课程的要求来,它那个代码提交要固定的要求的

  • 丧心病狂de魂淡
    2016-11-29 18:22:05

    有时候慕课网的检验会卡住,或者你输出的内容和他的答案不一样

  • 慕婉清9164454
    2016-11-28 20:41:15

    主函数应该在那个HelloWord类外面写的,