问答详情
源自:2-5 如何命名Java变量

Why????

public class HelloWorld{    public static void main(String[] args) {        String hobby = "我爱慕课网";        String http = "www.imooc.com";            System.out.println(hobby);        System.out.println(http); } } 哪里错了????

提问者:qq_别把孤独当自由_03188934 2016-09-24 21:58

个回答

  • 慕前端6824611
    2016-09-24 22:20:19
    已采纳

    String hobby = "我爱慕课网";  ---此处的分号是中文状态的,

    改为英文状态下的分号";"

  • chrisWu_Only
    2016-09-28 15:12:51

    这里面的符号都是英文  中文的没用

  • 惟喥嫚朩
    2016-09-24 22:10:24

    //“;”注意符号是英文状态下的,代码就行没什么问题
    public class HelloWorld{    
        public static void main(String[] args) {       
         String hobby = "我爱慕课网";        
         String http = "www.imooc.com";            
         System.out.println(hobby);        
         System.out.println(http);
         } 
    }


  • 萧大
    2016-09-24 22:08:27

    "我爱慕课网";   后的分号你写的不是英语分号,是中文分号,所以报错

  • gzand
    2016-09-24 22:07:32

    sorry,i don't kown

  • 帅帅的逯先生3598704
    2016-09-24 22:07:05

    没错呀亲