Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Number of quarters between two dates in Java

import java.time.LocalDate;
import java.time.temporal.IsoFields;
public class Demo {
	public static void main(String[] args) {
		long quarters =
		IsoFields.QUARTER_YEARS.between(
		LocalDate.of(2019, 3, 20),
		LocalDate.of(2019, 10, 25));
		System.out.println("Quarters between the two dates = " + quarters);
	}
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.