public static void checkSeason(int month) { //напишите тут ваш код for (month = 1; month <= 12; month++); if (month < 3 || month == 12){ System.out.println("зима"); } else if (month > 2 || month < 6){ System.out.println("весна"); } else if (month > 5 || month < 9){ System.out.println("лето"); } else System.out.println("осень"); выдает только весну