我是靠谱客的博主 优美山水,最近开发中收集的这篇文章主要介绍已知某年某月,请输出这个月共有多少天(switch语句),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package com.zhidi;


public class Lianxi08 {


public static void main(String[] args) {
// 已知某年某月,请输出这个月共有多少天。(switch语句)

int year = 2012;
int month = 2;

switch(month){
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
System.out.println(year+"年"+month+"月一共有31天");
break;
case 4:
case 6:
case 9:
case 11:
System.out.println(year+"年"+month+"月一共有30天");
break;
case 2:
if(year%4==0 && year%100!=0 || year%400==0){
System.out.println(year+"年"+month+"月一共有29天");
}else{
System.out.println(year+"年"+month+"月一共有28天");
}
break;
default:
System.out.println("输入错误");
}


}


}

最后

以上就是优美山水为你收集整理的已知某年某月,请输出这个月共有多少天(switch语句)的全部内容,希望文章能够帮你解决已知某年某月,请输出这个月共有多少天(switch语句)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部