栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

java打印指定年月的日历

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

java打印指定年月的日历

本文实例为大家分享了Java打印指定年月日历的具体代码,供大家参考,具体内容如下

日历如下:

程序如下:

//打印指定年月的日历
public class PrintCalendar {
 
 public static void main(String[] args) {
 int year=2013;
 int month=12;
 printMonth(year,month);
 }
 
 private static void printMonth(int year, int month) {//打印日历
 printMonthTitle(year,month);
 printMonthBody(year,month);
 }
 
 private static void printMonthTitle(int year, int month) {//打印日历标题
 System.out.println("  "+getMonthName(month)+" "+year);
 System.out.println("------------------------------");
 System.out.println(" Sun Mon Tue Wed Thu Fri Sat");
 }
 
 private static String getMonthName(int month) {
 String monthName=null;
 switch(month){
 case 1:monthName="January";break;
 case 2:monthName="February";break;
 case 3:monthName="March";break;
 case 4:monthName="April";break;
 case 5:monthName="May";break;
 case 6:monthName="June";break;
 case 7:monthName="July";break;
 case 8:monthName="August";break;
 case 9:monthName="September";break;
 case 10:monthName="October";break;
 case 11:monthName="November";break;
 case 12:monthName="December";
 }
 return monthName;
 }
 
 public static boolean isLeapYear(int year){//判断是否为闰年
 return year%400==0||(year%4==0&&year%100!=0);
 }
 
 public static int getNumberOfDaysInMonth(int year,int month){//获取对应月份天数
 if(month==1||month==3||month==5||month==7||month==8||month==10||month==12)
 return 31;
 if(month==4||month==6||month==9||month==11)
 return 30;
 if(month==2)
 return isLeapYear(year)?29:28;
 return 0;
 }
 
 public static int getTotalNumberOfDays(int year,int month){//获取从1800年到当月的总天数
 int total=0;
 for(int i=1800;i

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/137439.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号