欧拉计划 第十九题

You are given the following information, but you may prefer to do some research for yourself.

  • 1 Jan 1900 was a Monday.

  • Thirty days has September,April, June and November.All the rest have thirty-one,Saving February alone,Which has twenty-eight, rain or shine.And on leap years, twenty-nine.

  • A leap year occurs on any year evenly divisible by 4, but not on a century unless it is divisible by 400.

How many Sundays fell on the first of the month during the twentieth century (1 Jan 1901 to 31 Dec 2000)?

您将获得以下信息,但您可以为自己做一些研究。

  • 1900年1月1日是星期一。

  • 三十天有九月,四月,六月和十一月。其他月份都有三十一天,仅二月,其中二十八天。在闰年,二十九天。

  • 闰年发生在任何一年,可被4整除,但除非可被400整除,否则不会在一个世纪上。

在二十世纪的第一个月(1901年1月1日至2000年12月31日),每月第一天有多少个星期日?

思路
蔡勒公式

w = (d + m * 2 + 3 * (m + 1) / 5 + y + y / 4 - y / 100) % 7

w是星期几(0~6)

y,m,d表示年月日

m=1或2时要对应到上一年的13月和14月

#include <stdio.h>

int week(int y, int m, int d){
	if(m == 1 || m == 2){
		y--;
		m += 12;
	}
	int w = (d + 2 * m + 3 * (m + 1) / 5 + y + y / 4 + y / 400) % 7;
	return w;
}
int main(){
	int sunday = 0;
	for(int y = 1901; y <= 2000; y++){
		for(int m = 1; m <= 12; m++){
			if(week(y, m, 1) == 6){ sunday++;}
		}
	}
	printf("%d\n", sunday);
	return 0;
}

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值