程序练习-switch选择语句练习

/*
  输入月份,打印相应的季节。春345、夏678、
  秋9 10 11、冬12 1 2 。
*/
import java. util.*;
public class Demo5{
    public static void main(String [] args){
    System.out.println("请输入月份");
    Scanner input = new Scanner(System.in);
    int month = input.nextInt();
    switch(month){
        case 3: 
        case 4:
        case 5:
        System.out.println("春");
        break;
        case 6:
        case 7:
        case 8:
        System.out.println("夏");
        break;
        case 9:
        case 10:
        case 11:
        System.out.println("秋");
        break;
        case 12: 
        case 1:
        case 2:
        System.out.println("冬");
        break;
        default:System.out.println("输入不符合要求");

    }

    }
}

程序练习-switch选择语句练习_第1张图片

你可能感兴趣的:(Java)