Explorar el Código

currentDay()

- It now returns the array of the actual numbers instead of the default
formatting
master
BinHong Lee hace 8 años
padre
commit
e53d8b0423
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      Main.java

+ 2
- 2
Main.java Ver fichero

@@ -107,8 +107,8 @@ class Main
{
int[] currentDay = new int[3];

currentDay[0] = date.getYear();
currentDay[1] = date.getMonth();
currentDay[0] = date.getYear() + 1900;
currentDay[1] = date.getMonth() + 1;
currentDay[2] = date.getDate();

return currentDay;


Cargando…
Cancelar
Guardar