Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Calendar;

public class Main {

    public static void main(String[] args) {

        Calendar cal = Calendar.getInstance();

        // get what the minimal days required in the first week of the year 
        int i = cal.getMinimalDaysInFirstWeek();

        // print the result
        System.out.println("Minimal days required :" + i);
    }
}