Question: import java.util.Scanner; public class MonthsOnAndAfter { // You will need to write a method that makes this // code compile and produce the correct output.
import java.util.Scanner;
public class MonthsOnAndAfter { // You will need to write a method that makes this // code compile and produce the correct output. // YOU MUST USE switch! // As a hint, you should not have to use the name of each // month more than once. // TODO - write your code below this comment.
// DO NOT MODIFY main! public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Enter month (0-11): "); int month = input.nextInt(); printMonthsOnAndAfter(month); } }
This program works similarly to the one you wrote in the previous step, except that it also prints the months that come after the given month. Example output of the program is shown below, with user input shown in bold:
Enter month (0-11): 0 January February March April May June July August September October November December
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
