Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Calendar;
import java.util.Locale;

public class Main {

    public static void main(String[] args) {

        Calendar now = Calendar.getInstance();
        Locale locale = Locale.getDefault();

        String n = now.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.SHORT, locale);

        System.out.printf(n);
    }
}