Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

This chapter covers methods. Need java code. Thanks. Write a method that calcula

ID: 3713784 • Letter: T

Question

This chapter covers methods. Need java code. Thanks.

Write a method that calculates and finds out i. The day of the week the user's date of birth falls on (Sun 1, Mon 2, Tues 3, ...). Then your method calls another method to calculate and find out whether the year of the same user's birth was a leap year or not. If the user's DoB was May 13, 1998 I expect your code will display, The year 1998 is a leap year? True or False: False May 13, 1998 fell on day number 4 ii. Extra credit point if your method can distinguish a future dates from a dates in the past and adjust the message accordingly. If the user's DoB was May 13, 1998 I expect your code will display, The year 2020 will be a leap year? True or False: True May 13, 2020 will fall on day number 4 ii. Extra credit point if your method can call another method to find out what day Easter Sunday feel/ will falls for the same year given above. The formula for calculating Easter Sunday can be found or http://www.whydomath.org/Reading Room_Material/ian stewart/200003.ht ml

Explanation / Answer

import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Calendar;

public class MyClass {
public static boolean isLeapYear(int year) {
if (year % 4 != 0) {
return false;
} else if (year % 400 == 0) {
return true;
} else if (year % 100 == 0) {
return false;
} else {
return true;
}
}
  
public static void printDayOfWeek(Date date) {
Calendar calendar = Calendar.getInstance();
calendar.setTime(date);
int year = calendar.get(Calendar.YEAR);
  
System.out.print("The year " + year + " is a leap year? True or False: ");
if (isLeapYear(year)) {
System.out.println("True");
} else {
System.out.println("False");
}
SimpleDateFormat simpleDateformat = new SimpleDateFormat("MMM dd, YYYY");
System.out.println(simpleDateformat.format(date) + " fell on day number "+ calendar.get(Calendar.DAY_OF_WEEK));
  
}
  
public static void main(String[] args) {
printDayOfWeek(new Date());
}
}

Sample run

The year 2018 is a leap year? True or False: False
Apr 23, 2018 fell on day number 2