九度OJ 1043:Day of Week(星期几) (日期计算)

2024-04-02 02:38

本文主要是介绍九度OJ 1043:Day of Week(星期几) (日期计算),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

时间限制:1 秒

内存限制:32 兆

特殊判题:

提交:5349

解决:1923

题目描述:

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.

样例输入:
9 October 2001
14 October 2001
样例输出:
Tuesday
Sunday
提示:

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

来源:
2008年上海交通大学计算机研究生机试真题

思路:

日期计算类的题目不少,虽然不难,但容易出错。

需要注意的地方主要是闰年的计算。

一般的年是365天,二月是28天,而闰年则366天,2月是29天。

闰年的划定标准是:400的倍数,或者4的倍数但不是100的倍数。


代码:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>#define N 10int compare(int y[2], int m[2], int d[2])
{if (y[0] != y[1])return y[0]-y[1];else if (m[0] != m[1])return m[0]-m[1];else if (d[0] != d[1])return d[0]-d[1];elsereturn 0;
}void swap(int a[2])
{int tmp;tmp = a[0];a[0] = a[1];a[1] = tmp;
}int days(int y, int m, int d)
{int count = 0;//printf("y=%d, m=%d, d=%d\n", y, m, d);count += y*365;count += (y-1)/4+1;count -= (y-1)/100+1;count += (y-1)/400+1;//printf("count=%d\n", count);if (m > 1)count += 31;if (m > 2){if ((y%4 == 0 && y%100 != 0) || y%400 == 0)count += 29;elsecount += 28;}if (m > 3)count += 31;if (m > 4)count += 30;if (m > 5)count += 31;if (m > 6)count += 30;if (m > 7)count += 31;if (m > 8)count += 31;if (m > 9)count += 30;if (m > 10)count += 31;if (m > 11)count += 30;if (m > 12)count += 31;//printf("count=%d\n", count);count += d;//printf("count=%d\n", count);return count;
}int month(char s[])
{char a[12][20] = {"January", "February", "March", "April","May", "June", "July", "August","September", "October", "November", "December"};int i;for (i=0; i<12; i++){if (strcmp(s, a[i]) == 0)break;}   return i+1;
}   void pweek(int w1)
{   char s[7][10] = {"Sunday", "Monday", "Tuesday", "Wednesday","Thursday", "Friday", "Saturday"};printf("%s\n", s[w1]);
}   int main(void)
{       char s[N];int y[2], m[2], d[2], w[2];y[0] = 2001; m[0] = 10;d[0] = 9; w[0] = 2;while (scanf("%d%s%d", &d[1], s, &y[1]) != EOF){m[1] = month(s);w[1] = w[0];int cmp = compare(y, m, d);if (cmp < 0){w[1] = (w[0] + days(y[1], m[1], d[1])- days(y[0], m[0], d[0])) % 7;}else if (cmp > 0){w[1] = (w[0] + 7 - (days(y[0], m[0], d[0])- days(y[1], m[1], d[1])) % 7) % 7;}           pweek(w[1]);}return 0;
}       
/**************************************************************Problem: 1043User: liangrx06Language: CResult: AcceptedTime:0 msMemory:916 kb
****************************************************************/


这篇关于九度OJ 1043:Day of Week(星期几) (日期计算)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/868752

相关文章

Python使用date模块进行日期处理的终极指南

《Python使用date模块进行日期处理的终极指南》在处理与时间相关的数据时,Python的date模块是开发者最趁手的工具之一,本文将用通俗的语言,结合真实案例,带您掌握date模块的六大核心功能... 目录引言一、date模块的核心功能1.1 日期表示1.2 日期计算1.3 日期比较二、六大常用方法详

MySQL 日期时间格式化函数 DATE_FORMAT() 的使用示例详解

《MySQL日期时间格式化函数DATE_FORMAT()的使用示例详解》`DATE_FORMAT()`是MySQL中用于格式化日期时间的函数,本文详细介绍了其语法、格式化字符串的含义以及常见日期... 目录一、DATE_FORMAT()语法二、格式化字符串详解三、常见日期时间格式组合四、业务场景五、总结一、

Python如何计算两个不同类型列表的相似度

《Python如何计算两个不同类型列表的相似度》在编程中,经常需要比较两个列表的相似度,尤其是当这两个列表包含不同类型的元素时,下面小编就来讲讲如何使用Python计算两个不同类型列表的相似度吧... 目录摘要引言数字类型相似度欧几里得距离曼哈顿距离字符串类型相似度Levenshtein距离Jaccard相

springboot日期格式化全局LocalDateTime详解

《springboot日期格式化全局LocalDateTime详解》文章主要分析了SpringBoot中ObjectMapper对象的序列化和反序列化过程,并具体探讨了日期格式化问题,通过分析Spri... 目录分析ObjectMapper与jsonSerializer结论自定义日期格式(全局)扩展利用配置

对postgresql日期和时间的比较

《对postgresql日期和时间的比较》文章介绍了在数据库中处理日期和时间类型时的一些注意事项,包括如何将字符串转换为日期或时间类型,以及在比较时自动转换的情况,作者建议在使用数据库时,根据具体情况... 目录PostgreSQL日期和时间比较DB里保存到时分秒,需要和年月日比较db里存储date或者ti

使用C#代码计算数学表达式实例

《使用C#代码计算数学表达式实例》这段文字主要讲述了如何使用C#语言来计算数学表达式,该程序通过使用Dictionary保存变量,定义了运算符优先级,并实现了EvaluateExpression方法来... 目录C#代码计算数学表达式该方法很长,因此我将分段描述下面的代码片段显示了下一步以下代码显示该方法如

如何用Java结合经纬度位置计算目标点的日出日落时间详解

《如何用Java结合经纬度位置计算目标点的日出日落时间详解》这篇文章主详细讲解了如何基于目标点的经纬度计算日出日落时间,提供了在线API和Java库两种计算方法,并通过实际案例展示了其应用,需要的朋友... 目录前言一、应用示例1、天安门升旗时间2、湖南省日出日落信息二、Java日出日落计算1、在线API2

day-51 合并零之间的节点

思路 直接遍历链表即可,遇到val=0跳过,val非零则加在一起,最后返回即可 解题过程 返回链表可以有头结点,方便插入,返回head.next Code /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode() {}*

poj 1113 凸包+简单几何计算

题意: 给N个平面上的点,现在要在离点外L米处建城墙,使得城墙把所有点都包含进去且城墙的长度最短。 解析: 韬哥出的某次训练赛上A出的第一道计算几何,算是大水题吧。 用convexhull算法把凸包求出来,然后加加减减就A了。 计算见下图: 好久没玩画图了啊好开心。 代码: #include <iostream>#include <cstdio>#inclu

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc