欧拉计划006 Counting Sundays

Counting Sundays

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)?

解题思路

答案:171
题目说一下的,1900年1月1日是星期一,问20世纪(1901.1-2000.12)中多少个月1号为周日?

程序代码

#include <stdio.h>
#include <string.h>
int leap(int n){
    if(n%400==0||n%4==0&&n%100!=0)
        return 1;
    return 0;
}

int main ()
{
    int i,j,k,w;
    int sum=0;
    int d[2][15]={{31,31,28,31,30,31,30,31,31,30,31,30},
                {31,31,29,31,30,31,30,31,31,30,31,30}};
    k=0;w=6;
    for(i=1901;i<=2000;i++){
        for(j=1;j<13;j++){
            w+=d[leap(i)][j-1];
            w%=7;printf("%d-%d-%d\n",i,j,w);
            if(!w){
                sum++;
            }
        }
    }
    printf("%d\n",sum);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值