Procházet zdrojové kódy

currentDay()

- It now returns the array of the actual numbers instead of the default
formatting
master
BinHong Lee před 8 roky
rodič
revize
e53d8b0423
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      Main.java

+ 2
- 2
Main.java Zobrazit soubor

@@ -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;


Načítá se…
Zrušit
Uložit