Objectives 1. Use Scanner class to get user input and System.out.printin) to display output. 2. From pseudocode, convert a ladder-style nested if-else statement into a switch statement. Background Reading Horstmann, Java For Everyone, Chapter 3. ZyBook, Section 3. Assignment Lab3c The following algorithm yields the season (Spring, Summer, Fall, or Winder) for a given month and day. Write a program that prompts the user for a month and day and then prints the season, as determined by this 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 If month is 10, 11, or 12, season = "Fall" If month is divisible by 3 and day >= 21 If season is "Winter", season = "Spring" Else If season is "Spring", season = "Summer" Else If season is " Summer", season = "Fall" Else season = "Winter" Requirements: • The name of the Java class is Lab3c. • Your "identification string" should be the first comment of the main method. // Program 3, [Name], [mascId] • The prompt should be on its own line with the following text (I.e. use system.out.println(): Enter a month and day: Read in the value and use a switch structure to determine which value the user entered. A statement such as if (input == 1 || input ==2 || input == 3) can be accomplished in a switch statement employing the "fall through" mechanism:

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter7: Characters, Strings, And The Stringbuilder
Section: Chapter Questions
Problem 4GZ
icon
Related questions
Question
Answer completely and correctly this time else will downvote it and bad ratings and comments
Objectives
1. Use Scanner class to get user input and System.out.printIn() to display output.
2. From pseudocode, convert a ladder-style nested if-else statement into a switch statement.
Background Reading
Horstmann, Java For Everyone, Chapter 3. ZyBook, Section 3.
Assignment Lab3c
The following algorithm yields the season (Spring, Summer, Fall, or Winder) for a given month and day. Write a program that prompts the user for a
month and day and then prints the season, as determined by this 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 If month is 10, 11, or 12, season = "Fall"
If month is divisible by 3 and day >= 21
If season is "Winter", season = "Spring"
Else If season is "Spring", season = "Summer"
Else If season is "Summer", season = "Fall"
Else season = "Winter"
Requirements:
The name of the Java class is Lab3c.
Your "identification string" should be the first comment of the main method. // Program 3, [Name],
[mascId]
The prompt should be on its own line with the following text (I.e. use System.out.println():
Enter a month and day:
Read in the value and use a switch structure to determine which value the user entered.
• A statement such as if (input == 1 || input ==2 || input == 3) can be accomplished in a switch statement employing the
"fall through" mechanism:
Transcribed Image Text:Objectives 1. Use Scanner class to get user input and System.out.printIn() to display output. 2. From pseudocode, convert a ladder-style nested if-else statement into a switch statement. Background Reading Horstmann, Java For Everyone, Chapter 3. ZyBook, Section 3. Assignment Lab3c The following algorithm yields the season (Spring, Summer, Fall, or Winder) for a given month and day. Write a program that prompts the user for a month and day and then prints the season, as determined by this 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 If month is 10, 11, or 12, season = "Fall" If month is divisible by 3 and day >= 21 If season is "Winter", season = "Spring" Else If season is "Spring", season = "Summer" Else If season is "Summer", season = "Fall" Else season = "Winter" Requirements: The name of the Java class is Lab3c. Your "identification string" should be the first comment of the main method. // Program 3, [Name], [mascId] The prompt should be on its own line with the following text (I.e. use System.out.println(): Enter a month and day: Read in the value and use a switch structure to determine which value the user entered. • A statement such as if (input == 1 || input ==2 || input == 3) can be accomplished in a switch statement employing the "fall through" mechanism:
Expert Solution
steps

Step by step

Solved in 4 steps with 7 images

Blurred answer
Knowledge Booster
Block Comments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr