learn.howToCalculate
learn.whatIsHeading
A day-of-week calculator determines what day of the week any given date falls on. The Doomsday algorithm (Conway) or modular arithmetic can compute this for any date in the Gregorian calendar.
단계별 가이드
- 1Use the formula: (d + m + y + y/4 − y/100 + y/400 + c) mod 7
- 2d=day, m=month code, y=year, c=century adjustment
- 3Or simply count forward/backward from a known reference date
- 4JavaScript: new Date("YYYY-MM-DD").getDay() → 0=Sunday, 6=Saturday
풀어진 예시
입력
July 4, 1776
결과
Thursday
US Independence Day
입력
January 1, 2000
결과
Saturday
Y2K millennium
계산할 준비가 되셨나요? 무료 Day of the Week 계산기를 사용해 보세요
직접 시도해 보세요 →