Hi everyone, I'm fairly new to coding and I'm just beginning my CS degree. I'm trying to figure out why my 'else' statement is not compiling. I'm getting an error CS1525: Unexpected symbol 'else'. It's my first coding class so all this is very new to me lol. It's also online and our professor does not respond to any emails or messages left for him, so I've kinda been learning on my own. Any help is appreciated, thanks. Also I'm not sure how much code I should put, but this is the part that's giving me an error. I can post the code previous to that, it's not much.
if (month > 11 && month < 2)
extInput = winter;
extTotal = winter;
WriteLine("{0} interior murals are scheduled for a total of {2}",
intInput, intTotal.ToString("C", CultureInfo.GetCultureInfo("en-US")));
WriteLine("{0} exterior murals are scheduled for a total of {2}",
extInput, extTotal.ToString("C", CultureInfo.GetCultureInfo("en-US")));
//revenue
revenue = intTotal + extTotal;
WriteLine("Total revenue expected is {0}",
revenue.ToString("C", CultureInfo.GetCultureInfo("en-US")),
extTotal.ToString("C", CultureInfo.GetCultureInfo("en-US")));
else if (month == 4 || month == 5 || month == 9 || month == 10)