1
\$\begingroup\$

I have an assignment to create a method to retrieve the proper day of the week for any given date, without using the Java calendar. After countless hours of trying to implement the algorithm in the outline, I've finally finished it and it appears to work! I feel like it's really sloppy. Any tips on how to clean it up or remove any dead code you see?

Here's the algorithm I had to implement:

  1. Only look at the last two digits of the year and determine how many 12s fit in it
  2. Look at the remainder of this division
  3. How many 4s fit into that remainder
  4. Add the day of the month
  5. Add the month code:

    Jan = 1
    Feb = 4
    Mar = 4
    Apr = 0
    May = 2
    Jun = 5
    Jul = 0
    Aug = 3
    Sep = 6
    Oct = 1
    Nov = 4
    Dec = 6

  6. Add your numbers, then mod by 7

Some dates require special offsets:

  • January and February dates in leap years: subtract 1 from step 5
  • Dates in the 1600s: add 6 to step 5
  • Dates in the 1700s: add 4 to step 5
  • Dates in the 1800s: add 2 to step 5
  • Dates in the 2000s: add 6 to step 5
  • Dates in the 2100s: add 4 to step 5

public String getDayOfTheWeek() { int shortYear = yearNumber % ONE_HUND_MOD; /* gives the last two digits of the four digit year */ int anotherShortYear = yearNumber % ONE_HUND_MOD; /* gives the last two digits of the four digit year to another variable */ int twelvesFirstStep = (shortYear / TWELVE_DIVIDE); /* gives the number of 12s that fit in the last two digits of the year(step1) */ int secondStepRemainder = anotherShortYear % TWELVE; /* gives the remainder of whats left from dividing the last two digits of year by 12(step 2) */ int thirdStepRemainder = secondStepRemainder / FOUR; /* gives the division by 4 of the remainder of the previous step (step 3) */ int numericalDay = 0; int temp = twelvesFirstStep + secondStepRemainder + thirdStepRemainder + dayNumber +getMonthCode(); // all variables combined if (monthNumber ==JANUARY || monthNumber == FEBRUARY && isLeapYear() == true) { temp--; } else { temp = temp; } if (yearNumber >= CENTURY_SIXTEEN && yearNumber < CENTURY_SEVENTEEN || yearNumber >= CENTURY_TWENTY && yearNumber < CENTURY_TWENTY_ONE) { numericalDay = (SIX+temp) % MOD_BY_SEVEN; } else if(yearNumber >=CENTURY_SEVENTEEN && yearNumber < CENTURY_EIGHTEEN || yearNumber >= CENTURY_TWENTY_ONE && yearNumber <CENTURY_TWENTY_TWO) { numericalDay = (FOUR+temp) % MOD_BY_SEVEN; } else if(yearNumber >=CENTURY_EIGHTEEN && yearNumber < CENTURY_NINETEEN) { numericalDay =(TWO+temp) % MOD_BY_SEVEN; } else { numericalDay = temp % MOD_BY_SEVEN; } if(numericalDay == TRANSLATED_DAY_SAT) { return SATURDAY_STRING; } else if(numericalDay == TRANSLATED_DAY_SUN) { return SUNDAY_STRING; } else if(numericalDay ==TRANSLATED_DAY_MON) { return MONDAY_STRING; } else if(numericalDay == TRANSLATED_DAY_TUES) { return TUESDAY_STRING; } else if(numericalDay == TRANSLATED_DAY_WED) { return WEDNSEDAY_STRING; } else if(numericalDay ==TRANSLATED_DAY_THU) { return THURSDAY_STRING; } else { return FRIDAY_STRING; } } 
\$\endgroup\$
4
  • 1
    \$\begingroup\$I'm confused, because the code you have written doesn't look like the algorithm you had to implement. For example, why are leap years considered in the code?\$\endgroup\$
    – Tunaki
    CommentedMar 5, 2017 at 12:45
  • 2
    \$\begingroup\$How does this compare to Zeller's congruence?\$\endgroup\$
    – h.j.k.
    CommentedMar 5, 2017 at 13:00
  • 1
    \$\begingroup\$It seems that the definitions of many constants used in your code are missing\$\endgroup\$
    – Martin R
    CommentedMar 5, 2017 at 14:20
  • \$\begingroup\$You should determine the smallest and largest year for which the year works properly. Your first step should be to check if the input year is within the range that the function works over. If it falls outside the allowable range your code should issue an appropriate error message, throw an exception, or return an appropriate string such as "input out of range". Since the algorithm probably is designed for the Gregorian calendar, you may wish to disallow input before the first "normal" year of that calendar, 1583. (First year was 1582, but that was weird.)\$\endgroup\$CommentedMar 6, 2017 at 23:06

0

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.