кто может разьясните что не так в этом коде ?
package com.javarush.task.task04.task0411;
/*
Времена года на Терре
*/
public class Solution {
public static void main(String[] args) {
checkSeason(12);
checkSeason(4);
checkSeason(7);
checkSeason(10);
}
public static void checkSeason(int month) {
if (month>=1 && month<=3);{
System.out.print(" зима");}
else
if (month>=4 && month<=6){
System.out.print(" весна");}
else
if (month>=7 && month<=9){
System.out.print(" лето");}
else
if (month>=10 && month<=12){
System.out.print(" осень");}
}
}