12 switch语句

Posted sunnybowen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了12 switch语句相关的知识,希望对你有一定的参考价值。

public class FileTest {
    public static void main(String[] args) {
        Scanner scan =new Scanner(System.in);
        int week = scan.nextInt();
        switch(week) {
          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;
          default:System.out.println("输入的数据不正常"); break;    
        }
         }


 public static void main(String[] args) {
        Scanner scan =new Scanner(System.in);
        int week = scan.nextInt();
        switch(week) {
          case 1:
          case 2:
          case 3:
          case 4:
          case 5:System.out.println("工作日"); break;
          case 6:
          case 7:System.out.println("礼拜日"); break;
          default:System.out.println("输入的数据不正常"); break;    
        }
         }

 

以上是关于12 switch语句的主要内容,如果未能解决你的问题,请参考以下文章

Java基础12----switch语句

黑马java代码04-05.docx

写switch case语句不加break会怎样

12 switch语句

在swift中使用switch语句的布尔函数[重复]

Swift 中 didSelectRowAt 函数上的 Switch 语句