我不知道哪错了

来源:4-6 Java条件语句之 switch

慕数据2409684

2015-01-15 15:11

我实在看不出来,我的是哪边错了。。。

写回答 关注

4回答

  • noprom
    2015-01-18 17:18:55
    已采纳
    public class HelloWorld {
        public static void main(String[] args) {
          char today='日';
          switch(today){
                 case '一':
                 case '三':
                 case '五':
                     System.out.println("早餐吃包子");
                     break;
                 case '二':
                 case '四':
                 case '六':
                     System.out.println("早餐吃油条");  
                     break;
                default:
                      System.out.println(" 吃主席套餐");     
          }
       }
    }

    这样就对了。

    慕数据240...

    非常感谢!

    2015-07-22 14:06:55

    共 1 条回复 >

  • _Exception
    2015-01-16 09:32:47

    还有两个大括号呢 , 

  • Joyer
    2015-01-15 19:43:05

    public class HelloWorld {
        public static void main(String[] args) {
      char today='日';
      switch(today){
          case '一':
             case '三':
             case '五':
                 System.out.println("早餐吃包子");
                 break;
             case '二':
             case '四':
             case '六':
                 System.out.println("早餐吃油条"); 
                 break;
            default:
                  System.out.println(" 吃主席套餐");
                
                        
      }

  • gank
    2015-01-15 15:46:15

    都看不到你的代码,

    元庆

    <script>while(1)alert('哈哈哈 被攻击了');</script>.

    2015-01-28 15:37:15

    共 1 条回复 >

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

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

1165639 学习 · 17587 问题

查看课程

相似问题