用Java写万年历

万年历

输入年月份,输出当月的月历

import java.util.Scanner;

public class PerpetualCalendar {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner	timeinterval = new Scanner(System.in);
		System.out.print("请输入年份:");
		int year = timeinterval.nextInt();
		System.out.print("请输入月份:");
		int month = timeinterval.nextInt();
//		int years;
		int months;//当月天数
		int date=1; //当月1号
		int days ;//总天数
		int dates;//当年第几天
		int leapyear=0;//闰年计数器
		
		int firstDay1970=4;//1970/1/1
		int week =firstDay1970;
		
		
		
		//求闰年个数
		for(int i=1970;i<year;i++) {
			//闰年计数器 每闰年+1
			if((i%400==0)||(i%4==0&&i%100!=0)){
				leapyear++;
		//		System.out.println(i+"闰年");
			}
		}
		//求当月多少天
		
		switch(month) {
		case 1:
		case 3:
		case 5:
		case 7:
		case 8:
		case 10:
		case 12:
			months=31;
			break;
		case 4:
		case 6:
		case 9:
		case 11:
			months=30;
			break;
		default :
			if((year%400==0)||(year%4==0&&year%100!=0)) {
				months=29;
			}else {
				months=28;
			}
		
		}
		System.out.println(months+"天");
		//求当年第几天
		if(month==1) {
			dates=date;
		}else if(month==2) {
			dates=31+date;
		}else if(month==3) {
			dates=31+28+date;
		}else if(month==4) {
			dates=31+28+31+date;
		}else if(month==5) {
			dates=31+28+31+30+date;
		}else if(month==6) {
			dates=31+28+31+30+31+date;
		}else if(month==7) {
			dates=31+28+31+30+31+30+date;
		}else if(month==8) {
			dates=31+28+31+30+31+30+31+date;
		}else if(month==9) {
			dates=31+28+31+30+31+30+31+31+date;
		}else if(month==10) {
			dates=31+28+31+30+31+30+31+31+30+date;
		}else if(month==11) {
			dates=31+28+31+30+31+30+31+31+30+31+date;
		}else {
			dates=31+28+31+30+31+30+31+31+30+31+30+date;
		}	
		if(((year%400==0)||(year%4==0&&year%100!=0))&&month>2){
			dates++;
		}	
		//总天数=几年*365 +期间 闰年数+ 当年第几天
		days = (year - 1970) * 365 +leapyear  + dates ;		
		//求周几
		//日	一	二	三	四	五	六
		//0		1	2	3	4	5	6	
		
		week = ((days-1)%7+firstDay1970)%7;
		
//		System.out.println("第"+(days)+"天");
		System.out.println("当月1号为周"+week);
		System.out.println("日\t一\t二\t三\t四\t五\t六");
		
		for(int m=0;m<week;m++) {
			System.out.print("\t");
		}
		for (int i=1;i<=months;i++) {
			System.out.print(i+"\t");
			if((i+week)%7==0) {
				System.out.println();
			}
			
		}
		
	}

}

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值