Question: Write a Java program, called Seasons, which contains a static method called printSeason() which takes no input parameters and returns nothing. The printSeason() method should
Write a Java program, called Seasons, which contains a static method called printSeason() which takes no input parameters and returns nothing. The printSeason() method should get the user to input a single integer value between 1 and 12 representing a month of the year and print a message saying what Season it is. (see table below for Months and Seasons). To test the printSeason() method you should call it from the main method.
Month Number Representation Season:
January 1 Winter
February 2 Winter
March 3 Spring
April 4 Spring
May 5 Spring
June 6 Summer
July 7 Summer
August 8 Summer
September 9 Autumn
October 10 Autumn
November 11 Autumn
December 12 Winter
Sample Input 4
Sample Output April is in Spring
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
