Question: Java please Write a program Days.java that performs the following, Define a method called getDays which takes three integer parameters, month, day year of a
Write a program Days.java that performs the following, Define a method called getDays which takes three integer parameters, month, day year of a date, calculate and return the day number (total number of days since Jan 1^st of the year. (Should consider leap year, make use of loops and do not use built-in Calendar class) Take user input of month, day and year of a date, call getDays method to print the date with full month name and day number of the year. See sample output. Sample output 1: Enter month: 2 Enter day: 1 Enter year: 2017 February 1, 2017 is day 32 of 2017. Sample output2: Enter month: 3 Enter day: 2 Enter year: 2016 March 2, 2016 is day 62 of 2016
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
