Java develop a program that takes a date as input and outputs the… Javadevelop a program that takes a date as input and outputs the date’s

Java develop a program that takes a date as input and outputs the… Javadevelop a program that takes a date as input and outputs the date’s season. The input is a string to represent the month and an int to represent the day.Ex: If the input is:April 11the output is:SpringIn addition, check if the string and int are valid (an actual month and day).Ex: If the input is:Blue 65the output is:InvalidThe dates for each season are:Spring: March 20 – June 20Summer: June 21 – September 21Autumn: September 22 – December 20Winter: December 21 – March 19Image transcription textLAB ACTIVITY 3.21.1: LAB: Seasons 0 / 10 LabProgram.java Load default template… 1 import java. util. Scanner;3 public class LabProgram { public static void main(String args) { Scanner scnr = new Scanner(System. in);VOUIA String inputMonth; int inputDay; 8 9 /* Type your code here. */ 10 L1 } 12 Develop mode Su… Show more… Show more  Computer Science Engineering & Technology Java Programming PRG 420 Share QuestionEmailCopy link