Ejercicio
Fecha y hora
Objetivo
Crear un programa para mostrar la fecha y hora actual con el siguiente formato:
Hoy es 6 de febrero de 2015. Son las 03:23:12
Código de Ejemplo
public class Main
{
public static void main(String[] args)
{
String day = java.time.LocalDateTime.now().getDayOfMonth().toString("00");
String month = GetMonth(java.time.LocalDateTime.now().getMonthValue());
int year = java.time.LocalDateTime.now().getYear();
String time = java.time.LocalDateTime.now().ToLongTimeString();
System.out.printf("Today is %1$s of %2$s of %3$s. It´s %4$s." + "\r\n", day, month, year, time);
}
private static String GetMonth(int numberMonth)
{
String[] months = new String[] {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "Decenber"};
return months[numberMonth - 1];
}
}