javaSE之日历查询(控制台显示)

import java.util.Scanner;


public class show_Canlender {


public static void main(String[] args) {
//System.out.println("可查询三次,后推出项目");
        for (int g = 0; g < 100; g++) {
            Scanner in = new Scanner(System.in);
            System.out.println("\n请输入年份:");
            int year = in.nextInt();
            System.out.println("请输入月份:");
            int month = in.nextInt();
            int sum = 0;
            int k = 0;
            
            for (int i = 1; i <= month - 1; i++) {
                if (i == 2) {//输出二月的日历
                    if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
                        sum = sum + 29;
                    } else {
                        sum = sum + 28;
                    }
                } else {
                    if (i == 4 || i == 6 || i == 9 || i == 11) {
                        sum = sum + 30;
                    } else {
                        sum = sum + 31;
                    }
                }
            }
            System.out.println(sum);
            //判断闰年
            for (int a = 1900; a <= year - 1; a++) {
                if (a % 4 == 0 && a % 100 != 0 || a % 400 == 0) {
                    sum = sum + 366;
                } else {
                    sum += 365;
                }
            }
            System.out.println(sum);
            sum += 1;
            int wekday = sum % 7;
            System.out.println("日\t一\t二\t三\t四\t五\t六");
           
            for (int j = 1; j <= wekday; j++) {
                System.out.print("\t");
            }
            if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
                if (month == 2) {
                    k = 29;
                } else if (month == 4 || month == 6 || month == 9 || month == 11) {
                    k = 30;
                } else {
                    k = 31;
                }
            } else {
                if (month == 2) {
                    k = 28;
                } else if (month == 4 || month == 6 || month == 9 || month == 11) {
                    k = 30;
                } else {
                    k = 31;
                }
            }
            
            //k 就是当前月
            for (int i = 1; i <= k; i++) {
                if (sum % 7 == 6) {
                    System.out.print(i + "\n");
                } else {
                    System.out.print(i + "\t");
                }
                sum++;
            }
        }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值