Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
18
Task/Date-format/Java/date-format-2.java
Normal file
18
Task/Date-format/Java/date-format-2.java
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import java.util.Calendar;
|
||||
import java.util.GregorianCalendar;
|
||||
import java.text.DateFormatSymbols;
|
||||
import java.text.DateFormat;
|
||||
public class Dates{
|
||||
public static void main(String[] args){
|
||||
Calendar now = new GregorianCalendar(); //months are 0 indexed, dates are 1 indexed
|
||||
DateFormatSymbols symbols = new DateFormatSymbols(); //names for our months and weekdays
|
||||
|
||||
//plain numbers way
|
||||
System.out.println(now.get(Calendar.YEAR) + "-" + (now.get(Calendar.MONTH) + 1) + "-" + now.get(Calendar.DATE));
|
||||
|
||||
//words way
|
||||
System.out.print(symbols.getWeekdays()[now.get(Calendar.DAY_OF_WEEK)] + ", ");
|
||||
System.out.print(symbols.getMonths()[now.get(Calendar.MONTH)] + " ");
|
||||
System.out.println(now.get(Calendar.DATE) + ", " + now.get(Calendar.YEAR));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue