You must assign a value to Month before going into the if statements. Because the compiler doesn't know if any of the if statements will be true and the assignment executed. Even if it is obvious that there can be no month == "33" or something.

so it goes like:
String Month;
Month = "??error??";
if (....)