This is in java, thank you! Problem2: In this problem you ask the user for a month...

90.2K

Verified Solution

Question

Programming

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)

Answer & Explanation Solved by verified expert
3.6 Ratings (442 Votes)
Below is the source code for the two classes 1 Problem2 class class for calculating the season public class Problem2 month and day variables private int month private int day constructor public Problem2int m int d    See Answer
Get Answers to Unlimited Questions

Join us to gain access to millions of questions and expert answers. Enjoy exclusive benefits tailored just for you!

Membership Benefits:
  • Unlimited Question Access with detailed Answers
  • Zin AI - 3 Million Words
  • 10 Dall-E 3 Images
  • 20 Plot Generations
  • Conversation with Dialogue Memory
  • No Ads, Ever!
  • Access to Our Best AI Platform: Flex AI - Your personal assistant for all your inquiries!
Become a Member

Other questions asked by students