根据用指定的月份,打印该月所属的季节(switch)3,4,5 春季 6,7,8 为夏季 9,10,11 秋季 12,1,2冬季

源码如下:

        Scanner sv = new Scanner(System.in);
        System.out.print("请输入月份(1-12):");
        int c = sv.nextInt();
        switch (c) {
        case 1:
        case 2:
        case 12:
            System.out.println(c + "月是冬季!");
            break;
        case 3:
        case 4:
        case 5:
            System.out.println(c + "月是春季!");
            break;
        case 6:
        case 7:
        case 8:
            System.out.println(c + "月是夏季!");
            break;
        case 9:
        case 10:
        case 11:
            System.out.println(c + "月是秋季!");
            break;
        default:
            System.out.println(c + "是什么呀!你的输入有误!要输入1-12的数字哟!");
            sv.nextLine();
        }

你可能感兴趣的:(Java程序,学习)