How to display name of the weekdays ?


Levels of difficulty: / perform operation:

JAVA Program

import java.text.SimpleDateFormat;
import java.text.DateFormatSymbols;
public class Main {
	public static void main(String[] args) {
		String[] weekdays = new DateFormatSymbols().getWeekdays();
		for (int i = 2; i < (weekdays.length-1); i++) {
			String weekday = weekdays[i];
			System.out.println("weekday = " + weekday);
		}
	}
}

Output

weekday = Monday
weekday = Tuesday
weekday = Wednesday
weekday = Thursday
weekday = Friday