помогите
package com.javarush.task.task04.task0411;
/*
Времена года на Терре
*/
public class Solution {
public static void main(String[] args) {
checkSeason(2);
checkSeason(5);
checkSeason(7);
checkSeason(10);
}
public static void checkSeason(int month) {
if (month <= 2 ) {
System.out.println("зима");
}
if (month > 2 & month <= 5) {
System.out.println("весна");
}
if (month > 5 & month <= 8) {
System.out.println("лето");
}
if (month > 8 & month <= 11) {
System.out.println("осень");
}
if (month > 12 & month < 1){
}
}
}