Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.ZonedDateTime;
import java.time.temporal.ChronoUnit;

public class Main {
    public static void main(String[] args) {
        ZonedDateTime dateTime = ZonedDateTime.now();
        long o = dateTime.until(ZonedDateTime.now(), ChronoUnit.YEARS);
        System.out.println(o);
    }
}