当前位置 博文首页 > fggfgdg的博客:Switch语句的使用20201103

    fggfgdg的博客:Switch语句的使用20201103

    作者:[db:作者] 时间:2021-06-17 09:36

    public class TextSwitch {
    	public static void main(String[] args) {
    		int month = (int)(1+12*Math.random());
    		System.out.println("月份:"+month);
    		
    		switch (month) {
    		case 1:
    			System.out.println("一月份");
    			break;
    		case 2:
    			System.out.println("二月份");
    			break;
    		default:
    			System.out.println("其他月份");
    			break;
    		}
    	}
    }
    
    下一篇:没有了