This is in java, thank you!
Problem2: In this problem you ask the user fora month and day. You will then calculate the season based on themonth and day.
- Create a class named Problem2
- Create two integer instance variables, month and day.
- Create a constructor to initialize the both variables. Theconstructor should accept two arguments as parameters, m and d.Initialize the instance variables with these two values.
- Create a method called calcSeason. It should not have anyarguments and should return a string.
- The method should implement the following algorithm:
- If month is 1,2, or 3, season = “Winterâ€
- Else if month is 4,5, or 6, season = “Springâ€
- Else if month is 7,8, or 9, season = “Summerâ€
- Else season = “Fallâ€
- If month is evenly divisible by 3 and day >=21, then
- If season is “Winter†then season = “Springâ€
- Else if season is “Springâ€, season = “Summerâ€
- Else if season is “Summer†season = “Fallâ€
- Else season = “Winter
- Return Season
- Create a class named Problem2Tester (reminder: all testerclasses have a main method)
- Import Scanner
- Create a Scanner object
- Prompt the use to enter a month as a number
- Get the number from the user and store it as a variable
- Prompt the use to enter a day as a number
- Get the number from the user and store it as a variable
- Create a Problem2 object, initializing with the month and dayfrom the user
- Call the calcSeason method and print the result this can bedone directly in the print statement or you can create a newvariable and print it)