Copy and paste your print line in the method body because right now it is outside of it. So it should look like this

Code:
	} else if(month == 12) {
			sign = "Sagittarius";
		}
				System.out.println("Your Zodiac sign is " + sign + ".");

	}