Question: Write a program IsaspringDay.java that takes two int values m and d from the command line (i.e. args [0] and args[1]) and prints true if
Write a program IsaspringDay.java that takes two int values m and d from the command line (i.e. args [0] and args[1]) and prints true if day d of month m is between March 20 (m: 3, d-20) and June 20 (m-6, d 20), fal se otherwise Compilation: javac IsaspringDay.java Execution: java IsaspringDay month day *Prints true if the given month and fall between March 20 (inclusive) and June 20 (inclusive). Sample Executions: % java IsaspringDay 3 20 true % java IsaspringDay 6 20 % java IsaspringDay 4 15 t true true * %java IsaspringDay 9 11 false public class IsaSpringDay public static void main(String) args) / Your Code goes here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
