根据日期求星期几

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/AliceGoToAnother/article/details/79327735

C语言根据日期判断星期几(使用基姆拉尔森计算公式)

算法如下:

基姆拉尔森计算公式 :

W= (d+2*m+3*(m+1)/5+y+y/4-y/100+y/400) mod 7


在公式中d表示日期中的日数,m表示月份数,y表示年数。
注意:在公式中有个与其他公式不同的地方:
把一月和二月看成是上一年的十三月和十四月,例:如果是2004-1-10则换算成:2003-13-10来代入公式计算。

题目描述:
Day of Week
时间限制: 1 Sec  内存限制: 32 MB
献花: 256  解决: 84
[献花][花圈][TK题库]
题目描述
We now use the Gregorian style of dating in Russia. The leap years are years with number divisible by 4 but not divisible by 100, or divisible by 400.
For example, years 2004, 2180 and 2400 are leap. Years 2004, 2181 and 2300 are not leap.
Your task is to write a program which will compute the day of week corresponding to a given date in the nearest past or in the future using today’s agreement about dating.

输入
There is one single line contains the day number d, month name M and year number y(1000≤y≤3000). The month name is the corresponding English name starting from the capital letter.

输出
Output a single line with the English name of the day of week corresponding to the date, starting from the capital letter. All other letters must be in lower case.

样例输入
21 December 2012
5 January 2013
样例输出
Friday
Saturday

void CalculateWeekDay(int y, int m, int d)
{
    if(m == 1 || m == 2)
    {
        m += 12;
        y--;
    }
    int iweek = (d + 2*m + 3*(m+1)/5 + y + y/4 - y/100 + y/400) % 7;
    switch(iweek)
    {
        case 0:
            printf("Monday\n");
            break;
        case 1:
            printf("Tuesday\n");
            break;
        case 2:
            printf("Wednesday\n");
            break;
        case 3:
            printf("Thursday\n");
            break;
        case 4:
            printf("Friday\n");
            break;
        case 5:
            printf("Saturday\n");
            break;
        case 6:
            printf("Sunday\n");
            break;
    }
}

char month[13][20] = {"\0","January","February","March","April","May","June","July","August","September","October","November","December"};
int main()
{
    int d,m = 0,y;
    char monthInput[20];
    while(scanf("%d %s %d",&d,monthInput,&y) != EOF)
    {
        for(int i = 0; i < 14;i++)
        {
            if(strcmp(month[i],monthInput) == 0) m = i;
        }
        CalculateWeekDay(y,m,d);
    }

    return 0;
}

猜你喜欢

转载自blog.csdn.net/AliceGoToAnother/article/details/79327735