ソースを参照

currentDay()

- It now returns the array of the actual numbers instead of the default
formatting
master
BinHong Lee 8年前
コミット
e53d8b0423
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      Main.java

+ 2
- 2
Main.java ファイルの表示

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


読み込み中…
キャンセル
保存