Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as text by Tyler ( 18 years ago )
import java.util.Calendar;
public class Countdown {
static int date, hour, minute, year, month, day;
public void getDate() {
date = Calendar.DATE;
hour = Calendar.HOUR;
minute = Calendar.MINUTE;
year = Calendar.YEAR;
month = Calendar.MONTH;
day = Calendar.DAY_OF_WEEK;
}
public static void main(String[] args) {
getDate();
System.out.println("Date: " + date + "Hour: " + hour + "Minute: " + minute + "Year: " + year + "Month: " + month + "Day: " + day);
}
}
Revise this Paste