Php böyle PHP'nin aralığı fonksiyonu çalışması:
$leap_years = range(1900, 2000, 4);
creates array like 1900, 1904, 1908, ... Is there something simple like this in Java?
1900, 1904, 1908, ...