计算特定日期的一天
有没有直接的方法可以知道特定日期是哪一天?
例如,取任意日期,如 23-08-1980。现在,我想知道这个日期是哪一天(可以是从周一到周日的任何一天)。
有没有任何公式或其他方法可以统计计算?
不要使用任何编程语言。
Is there any direct way to know the day on a specific date?
For example, take any date say 23-08-1980. Now, I want to know the day on this date (It could be any starting from Monday to Sunday).
Is there any formula or any other way to calculate this statistically?
Do not use any programming language.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要一些有关年份的元信息,例如每年每个月的第一个星期日,从那里您应该能够更快地计算这一天。
http://www.jimloy.com/math/day-week.htm
You need some meta information about the year for example the first Sunday of every month in every year, from there on you should be able to calculate the day faster.
http://www.jimloy.com/math/day-week.htm
看看这个维基百科页面,http://en.wikipedia.org/wiki/Calculate_the_day_of_the_week#A_tabular_method_to_calculate_the_day_of_the_week
它也会跨越闰年。
Have a look at this Wikipedia page, http://en.wikipedia.org/wiki/Calculating_the_day_of_the_week#A_tabular_method_to_calculate_the_day_of_the_week
It goes over leap years as well.