Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.OffsetDateTime;
import java.time.temporal.ChronoField;

public class Main {
    public static void main(String[] args) {
        OffsetDateTime o = OffsetDateTime.now();
        long l = o.getLong(ChronoField.DAY_OF_WEEK);
        System.out.println(l);
    }
}