Created
January 2, 2011 00:37
-
-
Save onursenture/762154 to your computer and use it in GitHub Desktop.
Yilmaz Ozdil - http://www.hurriyet.com.tr/yazarlar/16660583.asp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package yilmazozdil; | |
import java.util.Calendar; | |
public class Main { | |
public static void main(String[] args) { | |
Calendar cal = Calendar.getInstance(); | |
int year = cal.get(Calendar.YEAR); | |
System.out.println("1 Ocak 1958, AB kuruldu.\n\n1959, Türkiye başvurdu."); | |
for (int i = 1960; i < year; i++) | |
System.out.println(i); | |
System.out.println("1 Ocak " + year + "..."); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment