4.Java開關語句-switch

來源:互聯網
上載者:User

標籤:

在條件判斷語句(if語句)過多時,可以使用開關語句來編寫。開關語句的基本結構是:
switch(整數){
    case 整數值 1: 語句; break;
    case 整數值 2: 語句; break;
    case 整數值 3: 語句; break;
    ……………………..
    default: 語句;
}

當“整數”的值等於“整數值1”、“整數值2”、“整數值3”......中的一個時,執行相應的語句,執行完成跳出開關語句;若沒有相當的數值,則執行default後邊的語句,執行完成跳出開關語句。

註:break語句用於跳出開關語句。

樣本:輸出當前月份。
public class control17{
    public static void main(String[] args){
        int i=8;
        switch(i){
            case 1: System.out.println("是一月份");break;
           case 2: System.out.println("是二月份");break;
           case 3: System.out.println("是三月份");break;
           case 4: System.out.println("是四月份");break;
           case 5: System.out.println("是五月份");break;
           case 6: System.out.println("是六月份");break;
           case 7: System.out.println("是七月份");break;
           case 8: System.out.println("是八月份");break;
           case 9: System.out.println("是九月份");break;
           case 10: System.out.println("是十月份");break;
           case 11: System.out.println("是十一月份");break;
           case 12:System.out.println("是十二月份");break;

           default: System.out.println("fault");
        }
    }
}

運行結果:
是八月份

4.Java開關語句-switch

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.