Answered step by step
Verified Expert Solution
Question
1 Approved Answer
5. Create a new program and save it as Quarter.java. Your program should be able to accept an integer value from 1 to 12 representing
5. Create a new program and save it as Quarter.java. Your program should be able to accept an integer value from 1 to 12 representing the months of the year. ( 1 is for January, 2 is for February, 3 is for March, and so on). Your program should display what quarter does the input month belong to. Example: If input is from 1 to 3 output should be: 1st Quarter If input is from 4 to 6 output should be: 2nd Quarter If input is from 7 to 9 output should be: 3rd Quarter If input is from 10 to 12 output should be: 4th Quarter 5.1. Implement the program using switch-case statement. 5.2. Now do the same program but use cascading if-else statement. 5.3 From both programs, what do you think is better in terms writability (the ease of writing the codes) and in terms of readability (the ease of understanding the codes)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started