Java: Calculate the first and last day of each week
9. First and Last Day of Week
Write a Java program to calculate the first and last day of each week.
Sample Solution:
Java Code:
import java.util.*;
import java.time.*;
import java.text.*;
public class Exercise9 {
public static void main(String []args){
     // Get calendar set to current date and time
      Calendar c = Calendar.getInstance();
     // Set the calendar to monday of the current week
     c.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);
        System.out.println();
     // Print dates of the current week starting on Monday
       DateFormat df = new SimpleDateFormat("EEE dd/MM/yyyy");
       System.out.println(df.format(c.getTime()));
        for (int i = 0; i <6; i++) {
         c.add(Calendar.DATE, 1);
           }
        System.out.println(df.format(c.getTime()));
		System.out.println();
     }
}
Sample Output:
Mon 19/06/2017 Sun 25/06/2017
N.B.: The result may varry for your system date and time.
Pictorial Presentation:
Flowchart:
For more Practice: Solve these Related Problems:
- Write a Java program to compute the first and last day of each week in the current month.
 - Write a Java program to display the starting and ending dates of the week for a user-specified date.
 - Write a Java program to calculate weekly boundaries in a month and output them in a formatted table.
 - Write a Java program to determine the first and last days of each week using Calendar’s WEEK_OF_MONTH field.
 
Go to:
PREV : Last Date of Month.
NEXT : First and Last Day of Month.
Java Code Editor:
Improve this sample solution and post your code through Disqus
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
