ソースを参照

Minor bug

- Fixed missing semicolon on import statement
- Fixed formatting error when declaring ‘int[] currentDay’
master
BinHong Lee 8年前
コミット
40b9b86320
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      Main.java

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

@@ -3,7 +3,7 @@
* Last edited : 5/31/2016
*/

import java.util.Date
import java.util.Date;

class Main
{
@@ -105,7 +105,7 @@ class Main

public static int[] currentDay()
{
int[] currentDay = new int[3]();
int[] currentDay = new int[3];

currentDay[0] = date.getYear();
currentDay[1] = date.getMonth();


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