কীভাবে Day of the Week গণনা করবেন
Day of the Week কি?
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 ক্যালকুলেটর চেষ্টা করুন
নিজে চেষ্টা করে দেখুন →