22 Day of week 上交大复试 C++

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 2005, 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.

Month and Week name in Input/Output:
January, February, March, April, May, June, July, August, September, October, November, December
Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday

示例1

输入
9 October 2001
14 October 2001

输出
Tuesday
Sunday

题解

  1. 输入的月份是字符串,所以要将字符串月份处理成int
  2. 用蔡勒公式计算星期几:
    W=[C/4]-2C+y+[y/4]+[26(m+1)/10]+d-1 (其中[ ]为取整符号)
    注意:
    1、 C是年份的前两位数
    y是年份的后两位数
    m是月份
    d是日
    2、需要注意的是如果月份是一月二月,则需看成是上一年的13月,14月,所以月份不是1-12,而是3-14。
    3、W算出来的数有可能是负数,这是需要将他加上一个较大的7的倍数,然后进行取余。
    4、也就是说W:0-6,然后根据取值选择星期。

c++11

#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<string.h>
#include<algorithm>
#include<map>
#include<vector>
#include<queue>
using namespace std;
char mon[12][10]={"January","February","March","April","May","June","July","August","September","October","November","December"};
char week[7][10]={"Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"};


int main(){
#ifdef ONLINE_JUDGE
#else
    freopen("1.txt", "r", stdin);
    //在这个模板的同一级目录下建一个'1.txt'的文件
    //然后把输入全部放进去保存,之后运行代码完全不用输入任何数据
#endif
int d,y,w;
char sm[10];

while (cin>>d>>sm>>y){
     int i; //i在for外int,因为下面的int m=i+1;也需要
     for (i=0;i<12;i++){
        if(!strcmp(sm,mon[i]))
            break;
        }
        //下面是蔡勒公式
        int m=i+1;
        if(m==1||m==2){
            m+=12;
            y--;
        }
        w=(d+2*m+3*(m+1)/5+y+y/4-y/100+y/400)%7;
        cout<<week[w]<<endl;
    }

    return 0;
}

感想

为啥机试也要去背这种公式,我哭辽,如果能让用python机试多好

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值